From 0c900704e7e9ad6732baf0e61b6817d76fc01fed Mon Sep 17 00:00:00 2001 From: Thomas Hindoe Paaboel Andersen Date: Tue, 10 Mar 2015 05:25:28 +0100 Subject: [PATCH 1/1] Add type specifier for int --- src/bootchart/bootchart.c | 2 +- src/shared/util.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bootchart/bootchart.c b/src/bootchart/bootchart.c index 158f8a908..99ffb86c8 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) diff --git a/src/shared/util.c b/src/shared/util.c index a13819e79..b90e10ffb 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -2592,7 +2592,7 @@ char* dirname_malloc(const char *path) { int dev_urandom(void *p, size_t n) { static int have_syscall = -1; - _cleanup_close_ fd = -1; + _cleanup_close_ int fd = -1; int r; /* Gathers some randomness from the kernel. This call will -- 2.30.2