From 2737e443db8737c977f63522021933e7c3c3cf31 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 15 Feb 2022 12:25:22 -0800 Subject: [PATCH] bugfix: call fprintf() instead of printf() This is an embarrassing oversight. Signed-off-by: Dirk Hohndel --- core/uemis-downloader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/uemis-downloader.c b/core/uemis-downloader.c index 68d6e93a3..48309bc4d 100644 --- a/core/uemis-downloader.c +++ b/core/uemis-downloader.c @@ -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);