aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/libmemcached/files/0001-Fix-comparison-types.patch
blob: 9e5121fed7b8a990f5dc4ac4d6650767d5123873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
From ed4422979b221c8613ca02eb5c57cb80009366d1 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 18 Mar 2017 10:13:24 -0700
Subject: [PATCH 1/2] Fix comparison types

Fixes
error: comparison between pointer and integer ('char *' and 'int')

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
Upstream-Status: Pending

 clients/memflush.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clients/memflush.cc b/clients/memflush.cc
index 8bd0dbf..71545ea 100644
--- a/clients/memflush.cc
+++ b/clients/memflush.cc
@@ -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);
-- 
2.12.0