C modernization. - sam - An updated version of the sam text editor. | |
git clone git://vernunftzentrum.de/sam.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 5fc6fa96da153d7df639c9c01a398fd146b8c857 | |
parent be865a152edb3d824c4ef17fdd82840decb90370 | |
Author: Rob King <[email protected]> | |
Date: Thu, 28 Jul 2016 10:03:09 -0500 | |
C modernization. | |
Diffstat: | |
libXg/xtbinit.c | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/libXg/xtbinit.c b/libXg/xtbinit.c | |
@@ -760,7 +760,7 @@ ebread(Esrc *s) | |
return eb; | |
} | |
-static inline | |
+static inline int | |
ebappend(Ebuf *b, Esrc *s) | |
{ | |
if (s->tail){ | |
@@ -770,7 +770,7 @@ ebappend(Ebuf *b, Esrc *s) | |
s->head = s->tail = b; | |
} | |
-static inline | |
+static inline int | |
ebprepend(Ebuf *b, Esrc *s) | |
{ | |
b->next = s->head; |