baylibre-acme: Fix a compiler warning.

Use PRIu64 to avoid the following compiler warning:

    CC       src/hardware/baylibre-acme/gpio.lo
  protocol.c: In function 'bl_acme_set_shunt':
  protocol.c:341:2: warning: format '%llu' expects argument of type 'long long unsigned int', but argument 3 has type 'uint64_t' [-Wformat=]
    g_fprintf(fd, "%llu\n", MOHM_TO_UOHM(shunt));
    ^
This commit is contained in:
Uwe Hermann 2015-02-16 01:51:53 +01:00
parent 391e23a97f
commit 3452785431
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ SR_PRIV int bl_acme_set_shunt(const struct sr_channel_group *cg, uint64_t shunt)
}
g_string_free(path, TRUE);
g_fprintf(fd, "%llu\n", MOHM_TO_UOHM(shunt));
g_fprintf(fd, "%" PRIu64 "\n", MOHM_TO_UOHM(shunt));
/*
* XXX There's no g_fclose() in GLib. This seems to work,
* but is it safe?