summaryrefslogtreecommitdiff
path: root/src/shared/fileio.c
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-06-21 05:55:17 +0200
committerTom Gundersen <teg@jklm.no>2014-06-22 00:45:15 +0200
commitc8b32e11ee24a333f8f7c7c15226741d22e55fdd (patch)
tree3ab047e603bcf8fff6b692ad96965c34bac58bf6 /src/shared/fileio.c
parent2de61bbebfe6a1a97709b3277b150cacc30a79cd (diff)
consistently order cleanup attribute before type
Diffstat (limited to 'src/shared/fileio.c')
-rw-r--r--src/shared/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/fileio.c b/src/shared/fileio.c
index c7b2cd85b9..c5806249f6 100644
--- a/src/shared/fileio.c
+++ b/src/shared/fileio.c
@@ -708,7 +708,7 @@ int write_env_file(const char *fname, char **l) {
int executable_is_script(const char *path, char **interpreter) {
int r;
- char _cleanup_free_ *line = NULL;
+ _cleanup_free_ char *line = NULL;
int len;
char *ans;