diff options
author | Martin Szulecki | 2013-10-09 17:44:11 +0200 |
---|---|---|
committer | Martin Szulecki | 2013-10-09 17:44:11 +0200 |
commit | 8050de72b9910a923959e26cd5cc9e3181ae7761 (patch) | |
tree | e846707abd28bfa15a97c9ebaac98a85ead30a4f /common/userpref.c | |
parent | 708a866e103539384a3a789cee7a4d6753b4c277 (diff) | |
download | libimobiledevice-8050de72b9910a923959e26cd5cc9e3181ae7761.tar.gz libimobiledevice-8050de72b9910a923959e26cd5cc9e3181ae7761.tar.bz2 |
Remove duplicate newline from debug messages as one is added automatically
Diffstat (limited to 'common/userpref.c')
-rw-r--r-- | common/userpref.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |