Revision: 77362
          http://sourceforge.net/p/brlcad/code/77362
Author:   brlcad
Date:     2020-10-08 03:28:49 +0000 (Thu, 08 Oct 2020)
Log Message:
-----------
fix copy-paste error so debug msg is right.

Modified Paths:
--------------
    brlcad/trunk/bench/pixcmp.c

Modified: brlcad/trunk/bench/pixcmp.c
===================================================================
--- brlcad/trunk/bench/pixcmp.c 2020-10-07 20:12:49 UTC (rev 77361)
+++ brlcad/trunk/bench/pixcmp.c 2020-10-08 03:28:49 UTC (rev 77362)
@@ -263,9 +263,9 @@
     /* skip requested pixels in FILE2 */
     if (f2_skip && fseek(f2, f2_skip, SEEK_SET)) {
        bu_log("ERROR: Unable to seek %zd %s%s in FILE2\n",
-              f1_skip,
+              f2_skip,
               print_bytes?"byte":"pixel",
-              f1_skip==1?"":"s");
+              f2_skip==1?"":"s");
        perror("FILE2 fseek failure");
        exit(FILE_ERROR);
     }

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