diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-03-10 05:25:28 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-03-10 05:37:01 +0100 |
commit | 0c900704e7e9ad6732baf0e61b6817d76fc01fed (patch) | |
tree | f6899b3e29539e5b13e15a3a715b083ec441244a /src/bootchart/bootchart.c | |
parent | 6c767d1e1a1815fbd4d2b196fb92a0d85cfde5b2 (diff) |
Add type specifier for int
Diffstat (limited to 'src/bootchart/bootchart.c')
-rw-r--r-- | src/bootchart/bootchart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootchart/bootchart.c b/src/bootchart/bootchart.c index 158f8a908c..99ffb86c87 100644 --- a/src/bootchart/bootchart.c +++ b/src/bootchart/bootchart.c @@ -272,7 +272,7 @@ static void do_journal_append(char *file) { ssize_t n; _cleanup_free_ char *bootchart_file = NULL, *bootchart_message = NULL, *p = NULL; - _cleanup_close_ fd = -1; + _cleanup_close_ int fd = -1; bootchart_file = strappend("BOOTCHART_FILE=", file); if (bootchart_file) |