Changeset 7917 for trunk/Ohana/src/opihi/cmd.data/zplot.c
- Timestamp:
- Jul 16, 2006, 10:58:49 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/cmd.data/zplot.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.data/zplot.c
r2843 r7917 18 18 19 19 if (argc != 6) { 20 fprintf (stderr, "USAGE: zplot <x> <y> <z> min max\n");20 gprint (GP_ERR, "USAGE: zplot <x> <y> <z> min max\n"); 21 21 return (FALSE); 22 22 } … … 30 30 if ((zvec = SelectVector (argv[3], OLDVECTOR, TRUE)) == NULL) return (FALSE); 31 31 if (xvec[0].Nelements != yvec[0].Nelements) { 32 fprintf (stderr, "vectors %s and %s not the same length\n", argv[1], argv[2]);32 gprint (GP_ERR, "vectors %s and %s not the same length\n", argv[1], argv[2]); 33 33 return (FALSE); 34 34 } 35 35 if (xvec[0].Nelements != zvec[0].Nelements) { 36 fprintf (stderr, "vectors %s and %s not the same length\n", argv[1], argv[3]);36 gprint (GP_ERR, "vectors %s and %s not the same length\n", argv[1], argv[3]); 37 37 return (FALSE); 38 38 }
Note:
See TracChangeset
for help on using the changeset viewer.
