From 8050de72b9910a923959e26cd5cc9e3181ae7761 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Wed, 9 Oct 2013 17:44:11 +0200 Subject: Remove duplicate newline from debug messages as one is added automatically --- common/userpref.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common') diff --git a/common/userpref.c b/common/userpref.c index 35192ac..e9b47dc 100644 --- a/common/userpref.c +++ b/common/userpref.c @@ -602,7 +602,7 @@ userpref_error_t userpref_remove_device_record(const char *udid) /* remove file */ if (remove(device_record_file) != 0) { - debug_info("could not remove %s: %s\n", device_record_file, strerror(errno)); + debug_info("could not remove %s: %s", device_record_file, strerror(errno)); res = USERPREF_E_UNKNOWN_ERROR; } -- cgit v1.1-32-gdbae