RDT-compile fix
authorMatthias Runge <mrunge@redhat.com>
Thu, 8 Aug 2019 14:45:34 +0000 (16:45 +0200)
committerMatthias Runge <mrunge@redhat.com>
Thu, 8 Aug 2019 14:45:34 +0000 (16:45 +0200)
include feedback from review, make the code easier.

Signed-off-by: Matthias Runge <mrunge@redhat.com>
src/intel_rdt.c

index 62848db..99c3ed0 100644 (file)
@@ -325,11 +325,7 @@ static int strlisttoarray(char *str_list, char ***names, size_t *names_num) {
       continue;
 
     if ((isdupstr((const char **)*names, *names_num, token))) {
-      if (str_list != NULL)
-        ERROR(RDT_PLUGIN ": Duplicated process name \'%s\' in group \'%s\'",
-              token, str_list);
-      else
-        ERROR(RDT_PLUGIN ": Duplicated process name \'%s\'", token);
+      ERROR(RDT_PLUGIN ": Duplicated process name \'%s\'", token);
 
       return -EINVAL;
     } else {