From ae647da612e0edfb607a4fdb251983d6405f6b00 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 17 Feb 2017 15:36:50 +0100 Subject: [PATCH] ipc.c: Uninline get_key_or_die(). This function is rather big, so it's not clear whether it should be inlined or not. Without the inline attribute, that's up to the compiler to decide. --- ipc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc.c b/ipc.c index f7a676e..c55554c 100644 --- a/ipc.c +++ b/ipc.c @@ -228,7 +228,7 @@ error: return ret; } -static inline int get_key_or_die(const char *config_file) +static int get_key_or_die(const char *config_file) { int ret; struct stat statbuf; -- 2.39.2