diff options
Diffstat (limited to 'swaponoff.c')
-rw-r--r-- | swaponoff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/swaponoff.c b/swaponoff.c index 85f338932..eda15100b 100644 --- a/swaponoff.c +++ b/swaponoff.c @@ -35,8 +35,8 @@ _syscall1(int, swapoff, const char *, path); static int whichApp; -#define SWAPON_APP 1 -#define SWAPOFF_APP 2 +static const int SWAPON_APP = 1; +static const int SWAPOFF_APP = 2; static void swap_enable_disable(char *device) |