diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-06-21 05:55:17 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-06-22 00:45:15 +0200 |
commit | c8b32e11ee24a333f8f7c7c15226741d22e55fdd (patch) | |
tree | 3ab047e603bcf8fff6b692ad96965c34bac58bf6 /src/readahead | |
parent | 2de61bbebfe6a1a97709b3277b150cacc30a79cd (diff) |
consistently order cleanup attribute before type
Diffstat (limited to 'src/readahead')
-rw-r--r-- | src/readahead/readahead-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/readahead/readahead-common.c b/src/readahead/readahead-common.c index 890886eca1..eda99e8171 100644 --- a/src/readahead/readahead-common.c +++ b/src/readahead/readahead-common.c @@ -226,7 +226,7 @@ int open_inotify(void) { } ReadaheadShared *shared_get(void) { - int _cleanup_close_ fd = -1; + _cleanup_close_ int fd = -1; ReadaheadShared *m = NULL; mkdirs(); |