]> sigrok.org Git - libsigrok.git/commitdiff
beaglelogic: Fix a compiler warning.
authorUwe Hermann <redacted>
Fri, 9 Feb 2018 20:25:18 +0000 (21:25 +0100)
committerUwe Hermann <redacted>
Fri, 9 Feb 2018 20:44:23 +0000 (21:44 +0100)
 beaglelogic_tcp.c: In function 'beaglelogic_tcp_send_cmd':
 beaglelogic_tcp.c:114:3: warning: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'size_t' [-Wformat=]
     sr_dbg("Only sent %d/%lu bytes of command: '%s'.", out,
     ^

src/hardware/beaglelogic/beaglelogic_tcp.c

index c236c949c9be939679864c311ea38726986f2374..9cf78bbf854630d7b9f9431fd269a81fddb04ed7 100644 (file)
@@ -112,7 +112,7 @@ static int beaglelogic_tcp_send_cmd(struct dev_context *devc,
        }
 
        if (out < (int)strlen(buf)) {
-               sr_dbg("Only sent %d/%lu bytes of command: '%s'.", out,
+               sr_dbg("Only sent %d/%zu bytes of command: '%s'.", out,
                       strlen(buf), buf);
        }