diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-29 10:16:05 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-29 10:16:05 +0000 |
commit | dadfb4975b23b284fa02d15a5cfd21593b2993fc (patch) | |
tree | 993a6e7a9efd1d2a06408d9cd069cb4eeb09e883 /procps | |
parent | e1ee48e0fdfe18aadb410b62f21516bf4b8ea581 (diff) |
hush: add #defines to switch off break/continue if loops are not supported
*: remove a few inline keywords
no code changes
Diffstat (limited to 'procps')
-rw-r--r-- | procps/nmeter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/nmeter.c b/procps/nmeter.c index be039320b..48a5b4e26 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c @@ -152,7 +152,7 @@ static const char* get_file(proc_file *pf) return pf->file; } -static inline ullong read_after_slash(const char *p) +static ullong read_after_slash(const char *p) { p = strchr(p, '/'); if (!p) return 0; |