]> git.sur5r.net Git - openocd/blobdiff - testing/examples/PIC32/BlinkingLeds.c
- Replace 'while(' with 'while ('.
[openocd] / testing / examples / PIC32 / BlinkingLeds.c
index 027f59ac3072d8e3ddbc87ee281ede3540991fb4..dc7f8cfd72fbfdbb4d56240bce4e95bac3d9743a 100644 (file)
@@ -9,7 +9,7 @@ int main(void)
        mPORTDClearBits(BIT_2);
        mPORTDSetPinsDigitalOut(BIT_2);
        
-       while(1)
+       while (1)
        {
                for(i = 0; i < 500000; i++)
                        mPORTDToggleBits(BIT_0);