Fixed error message to identify the correct file
authorMark Abraham <mark.j.abraham@gmail.com>
Wed, 1 Feb 2012 04:45:41 +0000 (15:45 +1100)
committerRoland Schulz <roland@utk.edu>
Wed, 1 Feb 2012 05:53:16 +0000 (00:53 -0500)
When a frame exists, that file has *not* run out of frames.

Change-Id: Ief52d5a17ef73ab318f6d8e00d1f5acb71b69f52

src/kernel/tpbcmp.c

index 0251d34232ef4a3a1202c149de27805e307c3004..a438f16165cf44f525b1bf1c5b9fadb1a6860496 100644 (file)
@@ -809,7 +809,7 @@ void comp_trx(const output_env_t oenv,const char *fn1, const char *fn2,
     
     for (i=0; i<2; i++) {
       if (b[i] && !b[1-i])
-       fprintf(stdout,"\nEnd of file on %s but not on %s\n",fn[i],fn[1-i]);
+       fprintf(stdout,"\nEnd of file on %s but not on %s\n",fn[1-i],fn[i]);
       close_trj(status[i]);
     }
   }