chiark / gitweb /
move _cleanup_ attribute in front of the type
[elogind.git] / src / modules-load / modules-load.c
index b3f7af0ef84a3efe718ef7a3e72d71b89638d96b..7b19ee02efe43babce3fe9c0ead54d8d81ef07ee 100644 (file)
@@ -76,7 +76,7 @@ static int add_modules(const char *p) {
 }
 
 static int parse_proc_cmdline(void) {
-        char _cleanup_free_ *line = NULL;
+        _cleanup_free_ char *line = NULL;
         char *w, *state;
         int r;
         size_t l;
@@ -91,7 +91,7 @@ static int parse_proc_cmdline(void) {
         }
 
         FOREACH_WORD_QUOTED(w, l, line, state) {
-                char _cleanup_free_ *word;
+                _cleanup_free_ char *word;
 
                 word = strndup(w, l);
                 if (!word)