about summary refs log tree commit homepage
path: root/compat-util.h
diff options
context:
space:
mode:
Diffstat (limited to 'compat-util.h')
-rw-r--r--compat-util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat-util.h b/compat-util.h
index 00f2fee..413dab7 100644
--- a/compat-util.h
+++ b/compat-util.h
@@ -43,7 +43,7 @@ static inline size_t page_size(void)
  * account.  On error, it'll return a negative value and set errno
  * to EINVAL
  */
-static off_t cstr_to_off_t(const char *nptr, char **endptr, int base)
+static inline off_t cstr_to_off_t(const char *nptr, char **endptr, int base)
 {
         if (sizeof(long) == 8 || (sizeof(long) == 4 && sizeof(off_t) == 4))
                 return (off_t)strtol(nptr, endptr, base);