mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 23:43:24 +00:00
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
36af99591c
1 changed files with 1 additions and 1 deletions
|
@ -1457,7 +1457,7 @@ const char *do_uemis_import(device_data_t *data)
|
|||
if (!uemis_get_answer(mountpath, "getDeviceId", 0, 1, &result))
|
||||
goto bail;
|
||||
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;
|
||||
}
|
||||
param_buff[0] = strdup(deviceid);
|
||||
|
|
Loading…
Add table
Reference in a new issue