diff options
author | Roy Marples <roy@marples.name> | 2008-04-06 13:24:10 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-04-06 13:24:10 +0000 |
commit | 143239e143d57c550e949fb3fcc4540de7c8d354 (patch) | |
tree | 73a8503395edf832d0220307243e2fba4aab4405 /src/rc/rc.c | |
parent | 5d38d4d6e9e1e758395546e38af8e8c738043fd1 (diff) |
Increase pidstr size to 10 chars.
Diffstat (limited to 'src/rc/rc.c')
-rw-r--r-- | src/rc/rc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/rc.c b/src/rc/rc.c index 43bcb48e..b305b2d1 100644 --- a/src/rc/rc.c +++ b/src/rc/rc.c @@ -954,7 +954,7 @@ int main(int argc, char **argv) bool going_down = false; int depoptions = RC_DEP_STRICT | RC_DEP_TRACE; char krunlevel [PATH_MAX]; - char pidstr[6]; + char pidstr[10]; int opt; bool parallel; int regen = 0; |