]> sigrok.org Git - sigrok-firmware-fx2lafw.git/commitdiff
fx2lafw: fixup missing semicolon after macro "function call"
authorGerhard Sittig <redacted>
Fri, 29 Dec 2017 15:05:04 +0000 (16:05 +0100)
committerUwe Hermann <redacted>
Wed, 24 Jan 2018 18:03:33 +0000 (19:03 +0100)
Since RESETFIFO() macro currently is "phrased unfortunately", the call
site got away with the omission of a semicolon. Adding the missing
semicolon does not harm the current implementation, and unbreaks the
build when RESETFIFO() gets improved in the future.

fx2lafw.c

index 629e28c00d2dd3d13a256591016fe58a057eb456..646c1f15d59f766f378e321d595ad73ca5cdde72 100644 (file)
--- a/fx2lafw.c
+++ b/fx2lafw.c
@@ -78,7 +78,7 @@ static void setup_endpoints(void)
 
        /* EP2: Reset the FIFOs. */
        /* Note: RESETFIFO() gets the EP number WITHOUT bit 7 set/cleared. */
-       RESETFIFO(0x02)
+       RESETFIFO(0x02);
 
        /* EP2: Enable AUTOIN mode. Set FIFO width to 8bits. */
        EP2FIFOCFG = bmAUTOIN;