Fixed GNUmakefile.

long is "%ld"!
This commit is contained in:
hjp 1998-08-02 14:05:42 +00:00
parent f6fd7880a0
commit 40b44cbcdf
2 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
include GNUmakerules
include GNUmakevars
acctfix:
count:
install: $(ROOT)/usr/local/bin/count $(ROOT)/usr/local/man/man8/count.8
install: $(ROOT)/usr/local/bin/count
install_all:
$(MAKE) install ROOT=/nfs/wsrdb

View File

@ -24,7 +24,7 @@ int main(int argc, char **argv) {
}
for (i = start; i < stop; i++) {
printf("%d\n", i);
printf("%ld\n", i);
}
return 0;
}