projects
/
dss.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b795331
)
ipc.c: Uninline get_key_or_die().
author
Andre Noll
<maan@tuebingen.mpg.de>
Fri, 17 Feb 2017 14:36:50 +0000
(15:36 +0100)
committer
Andre Noll
<maan@tuebingen.mpg.de>
Sun, 16 Apr 2017 10:32:06 +0000
(12:32 +0200)
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
patch
|
blob
|
history
diff --git
a/ipc.c
b/ipc.c
index
f7a676e
..
c55554c
100644
(file)
--- a/
ipc.c
+++ b/
ipc.c
@@
-228,7
+228,7
@@
error:
return ret;
}
-static in
line in
t get_key_or_die(const char *config_file)
+static int get_key_or_die(const char *config_file)
{
int ret;
struct stat statbuf;