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/journal/microhttpd-util.c | |
parent | 2de61bbebfe6a1a97709b3277b150cacc30a79cd (diff) |
consistently order cleanup attribute before type
Diffstat (limited to 'src/journal/microhttpd-util.c')
-rw-r--r-- | src/journal/microhttpd-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/microhttpd-util.c b/src/journal/microhttpd-util.c index 9a8d5c6a12..007cb5dfdc 100644 --- a/src/journal/microhttpd-util.c +++ b/src/journal/microhttpd-util.c @@ -217,7 +217,7 @@ int check_permissions(struct MHD_Connection *connection, int *code) { const union MHD_ConnectionInfo *ci; gnutls_session_t session; gnutls_x509_crt_t client_cert; - char _cleanup_free_ *buf = NULL; + _cleanup_free_ char *buf = NULL; int r; assert(connection); |