From: Andre Noll Date: Fri, 17 Feb 2017 14:36:50 +0000 (+0100) Subject: ipc.c: Uninline get_key_or_die(). X-Git-Tag: v0.1.7~2 X-Git-Url: http://git.tuebingen.mpg.de/?p=dss.git;a=commitdiff_plain;h=ae647da612e0edfb607a4fdb251983d6405f6b00 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. --- 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;