summaryrefslogtreecommitdiff
path: root/memdump
diff options
context:
space:
mode:
Diffstat (limited to 'memdump')
-rw-r--r--memdump/mystuff.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/memdump/mystuff.h b/memdump/mystuff.h
index 7c5ac6f5..dce0cb5f 100644
--- a/memdump/mystuff.h
+++ b/memdump/mystuff.h
@@ -15,10 +15,9 @@ typedef unsigned long long uint64_t;
unsigned int skip_atou(const char **s);
unsigned long strtoul(const char *, char **, int);
-static inline int
-isdigit(int ch)
+static inline int isdigit(int ch)
{
- return (ch >= '0') && (ch <= '9');
+ return (ch >= '0') && (ch <= '9');
}
#endif /* MYSTUFF_H */