diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2018-05-28 21:17:14 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2018-05-28 21:17:14 +0000 |
commit | 3e28d5bc9c178f1e04e258557d284a2642fbffb7 (patch) | |
tree | 64e4f55e27578e60d80c1335b9fd586f63a371da /other | |
parent | b594902d14e2ac46f1c8ca0c9c0ab647c0111f11 (diff) | |
download | netpbm-mirror-3e28d5bc9c178f1e04e258557d284a2642fbffb7.tar.gz netpbm-mirror-3e28d5bc9c178f1e04e258557d284a2642fbffb7.tar.xz netpbm-mirror-3e28d5bc9c178f1e04e258557d284a2642fbffb7.zip |
whitespace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3257 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'other')
-rw-r--r-- | other/pampick.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/other/pampick.c b/other/pampick.c index 61941f06..67d42fc5 100644 --- a/other/pampick.c +++ b/other/pampick.c @@ -58,7 +58,7 @@ isMemberOfUintSet(const struct uintSet * const uintSetP, unsigned int i; retval = FALSE; /* initial assumption */ - + for (i = 0; i < uintSetP->count; ++i) { if (uintSetP->list[i] == searchValue) retval = TRUE; @@ -137,7 +137,7 @@ parseCommandLine(int argc, const char ** argv, if (*endPtr != '\0') pm_error("Garbage in sequence number argument '%s': '%s'", argv[i+1], endPtr); - + if (strtolResult < 0) pm_error("Image sequence number cannot be negative. " "You specified %d", strtolResult); @@ -171,7 +171,7 @@ extractOneImage(FILE * const infileP, struct pam inpam; struct pam outpam; enum pm_check_code checkRetval; - + unsigned int row; tuple * tuplerow; @@ -222,13 +222,13 @@ main(int argc, const char *argv[]) { struct cmdlineInfo cmdline; int eof; /* No more images in input */ - unsigned int imageSeq; + unsigned int imageSeq; /* Sequence of current image in input file. First = 0 */ pm_proginit(&argc, argv); parseCommandLine(argc, argv, &cmdline); - + eof = FALSE; for (imageSeq = 0; !eof; ++imageSeq) { if (isMemberOfUintSet(&cmdline.imageSeqList, imageSeq)) { @@ -247,6 +247,6 @@ main(int argc, const char *argv[]) { pm_close(stdin); pm_close(stdout); - + return 0; } |