< prev index next >

src/share/vm/services/diagnosticArgument.cpp

Print this page
rev 4131 : 8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux
8015265: revise the fix for 8007037
Reviewed-by: sspitsyn, dholmes, dcubed, coleenp
Contributed-by: jeremymanson@google.com, calvin.cheung@oracle.com

@@ -189,11 +189,11 @@
       fatal("Default string must be parsable");
     }
   } else {
     _value._time = 0;
     _value._nanotime = 0;
-    strcmp(_value._unit, "ns");
+    strcpy(_value._unit, "ns");
   }
 }
 
 template <> void DCmdArgument<NanoTimeArgument>::destroy_value() { }
 
< prev index next >