diff --git a/src/mu-util.c b/src/mu-util.c index 9c677e79..d23fe6d0 100644 --- a/src/mu-util.c +++ b/src/mu-util.c @@ -282,8 +282,7 @@ mu_util_get_dtype_with_lstat (const char *path) g_return_val_if_fail (path, DT_UNKNOWN); if (lstat (path, &statbuf) != 0) { - g_warning ("stat failed on %s: %s", - path, strerror(errno)); + g_warning ("stat failed on %s: %s", path, strerror(errno)); return DT_UNKNOWN; } diff --git a/src/tests/test-mu-query.c b/src/tests/test-mu-query.c index 9b154233..cd4d6752 100644 --- a/src/tests/test-mu-query.c +++ b/src/tests/test-mu-query.c @@ -31,8 +31,6 @@ #include "test-mu-common.h" #include "src/mu-query.h" - - static gchar* fill_database (void) {