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