bugfix: call fprintf() instead of printf()
This is an embarrassing oversight. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1ce42158f1
commit
2737e443db
@ -1457,7 +1457,7 @@ const char *do_uemis_import(device_data_t *data)
|
|||||||
if (!uemis_get_answer(mountpath, "getDeviceId", 0, 1, &result))
|
if (!uemis_get_answer(mountpath, "getDeviceId", 0, 1, &result))
|
||||||
goto bail;
|
goto bail;
|
||||||
if (strcmp(deviceid, param_buff[0]) != 0) {
|
if (strcmp(deviceid, param_buff[0]) != 0) {
|
||||||
printf(stderr, "Uemis: Device id has changed after reconnect!\n");
|
fprintf(stderr, "Uemis: Device id has changed after reconnect!\n");
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
param_buff[0] = strdup(deviceid);
|
param_buff[0] = strdup(deviceid);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user