Code

Fix prototype of subst()
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Tue, 1 Mar 2016 11:18:14 +0000 (12:18 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Tue, 1 Mar 2016 11:18:14 +0000 (12:18 +0100)
Commit e1b93f5 changed the signature of this function, but not the
prototype.

src/daemon/utils_subst.h

index 9085286a474c79da17428467e0865ae02bcb07f6..50df9c7ba0404a377e2b3a0967f58adfe931b039 100644 (file)
@@ -66,7 +66,7 @@
  *
  * The function returns 'buf' on success, NULL else.
  */
-char *subst (char *buf, size_t buflen, const char *string, int off1, int off2,
+char *subst (char *buf, size_t buflen, const char *string, size_t off1, size_t off2,
                const char *replacement);
 
 /*