[systemd-commits] src/log.c

Michal Schmidt michich at kemper.freedesktop.org
Thu Jan 19 04:02:43 PST 2012


 src/log.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit a3f914b2a21decb0c4bd7a763ddd3ace215091cb
Author: Michal Schmidt <mschmidt at redhat.com>
Date:   Thu Jan 19 13:00:34 2012 +0100

    log: move #pragma around the function
    
    Koen reported errors with gcc 4.5.4 for arm:
    src/log.c:624:9: error: #pragma GCC diagnostic not allowed inside
    functions

diff --git a/src/log.c b/src/log.c
index f65e8d1..1a6ea7e 100644
--- a/src/log.c
+++ b/src/log.c
@@ -618,13 +618,12 @@ int log_meta(
         return r;
 }
 
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
 _noreturn_ static void log_assert(const char *text, const char *file, int line, const char *func, const char *format) {
         static char buffer[LINE_MAX];
 
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wformat-nonliteral"
         snprintf(buffer, sizeof(buffer), format, text, file, line, func);
-#pragma GCC diagnostic pop
 
         char_array_0(buffer);
         log_abort_msg = buffer;
@@ -632,6 +631,7 @@ _noreturn_ static void log_assert(const char *text, const char *file, int line,
         log_dispatch(LOG_CRIT, file, line, func, buffer);
         abort();
 }
+#pragma GCC diagnostic pop
 
 void log_assert_failed(const char *text, const char *file, int line, const char *func) {
         log_assert(text, file, line, func, "Assertion '%s' failed at %s:%u, function %s(). Aborting.");



More information about the systemd-commits mailing list