c++: fix incompatible types
authorMichael Wallner <mike@php.net>
Mon, 6 Jan 2020 11:22:19 +0000 (12:22 +0100)
committerMichael Wallner <mike@php.net>
Mon, 6 Jan 2020 11:22:19 +0000 (12:22 +0100)
clients/memflush.cc
clients/memstat.cc

index 8bd0dbf536534669f02660d78b43c8c65537ded8..71545eabb43d13c04b1ee0658a181e515bc41fee 100644 (file)
@@ -39,7 +39,7 @@ int main(int argc, char *argv[])
 {
   options_parse(argc, argv);
 
-  if (opt_servers == false)
+  if (opt_servers == NULL)
   {
     char *temp;
 
@@ -48,7 +48,7 @@ int main(int argc, char *argv[])
       opt_servers= strdup(temp);
     }
 
-    if (opt_servers == false)
+    if (opt_servers == NULL)
     {
       std::cerr << "No Servers provided" << std::endl;
       exit(EXIT_FAILURE);
index 793aab9b4d39eaabc63c96463ee1896becb6e28f..e5bac9165a26d171734b690589a110d334c17129 100644 (file)
@@ -426,7 +426,7 @@ static void options_parse(int argc, char *argv[])
       break;
 
     case OPT_ANALYZE: /* --analyze or -a */
-      opt_analyze= OPT_ANALYZE;
+      opt_analyze= true;
       analyze_mode= (optarg) ? strdup(optarg) : NULL;
       break;