Use proper type for iterator - sinit - suckless init | |
git clone git://git.suckless.org/sinit | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 2e948429b275da54d2ec11631fda3c3e7fdd64e3 | |
parent 10a4b601ef8fda0d0318a56d4effd10d961c28c4 | |
Author: sin <[email protected]> | |
Date: Mon, 10 Feb 2014 20:16:28 +0000 | |
Use proper type for iterator | |
Diffstat: | |
M sinit.c | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/sinit.c b/sinit.c | |
@@ -31,7 +31,7 @@ int | |
main(void) | |
{ | |
int sig; | |
- int i; | |
+ size_t i; | |
if (getpid() != 1) | |
return EXIT_FAILURE; |