Revision: 65243
          http://sourceforge.net/p/brlcad/code/65243
Author:   carlmoore
Date:     2015-06-10 16:38:51 +0000 (Wed, 10 Jun 2015)
Log Message:
-----------
minor fixes to 2 error messages

Modified Paths:
--------------
    brlcad/trunk/src/libicv/crop.c

Modified: brlcad/trunk/src/libicv/crop.c
===================================================================
--- brlcad/trunk/src/libicv/crop.c      2015-06-10 16:38:40 UTC (rev 65242)
+++ brlcad/trunk/src/libicv/crop.c      2015-06-10 16:38:51 UTC (rev 65243)
@@ -44,10 +44,10 @@
        bu_exit(1, "icv_rect : ERROR: Vertical Cut Size\n");
 
     if (xorig+xnum > img->width)
-       bu_exit(1, "icv_rect : Cut not possible, Input parameters exceeds the 
width\n");
+       bu_exit(1, "icv_rect : Cut not possible; input parameters exceed the 
width.\n");
 
     if (yorig+ynum > img->height)
-       bu_exit(1, "icv_rect : Cut not possible, Input parameters exceeds the 
height\n");
+       bu_exit(1, "icv_rect : Cut not possible; input parameters exceed the 
height.\n");
 
     /* initialization of variables to insure cropping and copying */
     widthstep_in = img->width*img->channels;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to