Index: /trunk/psLib/test/astro/tst_psTime_01.c
===================================================================
--- /trunk/psLib/test/astro/tst_psTime_01.c	(revision 7947)
+++ /trunk/psLib/test/astro/tst_psTime_01.c	(revision 7948)
@@ -23,6 +23,6 @@
  *  @author  Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.6 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2006-06-27 20:33:22 $
+ *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2006-07-21 00:08:15 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -801,5 +801,5 @@
     time2 = psTimeConvert(time1,-100);
     // Verify return value is NULL
-    if(time2 != time1) {
+    if(time2 != NULL) {
         psError(PS_ERR_UNKNOWN,true,"Did not return time for invalid type to convert to");
         return 2;
@@ -809,5 +809,5 @@
     time2 = psTimeConvert(time1,-100);
     // Verify return value is NULL
-    if(time2 != time1) {
+    if(time2 != NULL) {
         psError(PS_ERR_UNKNOWN,true,"Did not return time for invalid type to convert to");
         return 2;
@@ -817,5 +817,5 @@
     time2 = psTimeConvert(time1,-100);
     // Verify return value is NULL
-    if(time2 != time1) {
+    if(time2 != NULL) {
         psError(PS_ERR_UNKNOWN,true,"Did not return time for invalid type to convert to");
         return 2;
@@ -825,5 +825,5 @@
     time2 = psTimeConvert(time1,PS_TIME_TAI);
     // Verify return value is NULL
-    if(time2 != time1) {
+    if(time2 != NULL) {
         psError(PS_ERR_UNKNOWN,true,"Did not return time for invalid type to convert to");
         return 2;
@@ -1126,5 +1126,5 @@
     psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message converting from UT1");
     time2 = psTimeConvert(time1,PS_TIME_UTC);
-    if(time2 != time1) {
+    if(time2 != NULL) {
         psError(PS_ERR_UNKNOWN,true,"Did not return time for conversion from UT1");
         return 23;
Index: /trunk/psLib/test/types/tap_psMetadataConfigParse.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadataConfigParse.c	(revision 7947)
+++ /trunk/psLib/test/types/tap_psMetadataConfigParse.c	(revision 7948)
@@ -150,5 +150,5 @@
     generateMDConfig();
 
-    int numBadLines = 0;            // Number of bad lines
+    unsigned int numBadLines = 0;            // Number of bad lines
     psMetadata *md = psMetadataConfigParse(NULL, &numBadLines, FILENAME, false);
     ok(md, "md = %x", md);
