Private
Public Access
2
0

firmata_curie_imu.c: Fix warning due to signed nature of function input buffer

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2016-10-19 10:44:38 +01:00
parent 623fef670e
commit c993cf10b4

View File

@@ -56,7 +56,7 @@ main()
mraa_firmata_response(firm, interrupt);
uint8_t* buffer = calloc(4, 0);
char* buffer = calloc(4, 0);
if (buffer == NULL) {
free(firm);
return EXIT_FAILURE;