Be consistent in how to check return codes for these functions.
[oweals/opkg-lede.git] / libopkg / opkg_cmd.c
index 1c9f6fc96fb28aa3a6e460bec30690df2b51945c..c5ba3f400ec128d877ec22d892997f3d6e47de4c 100644 (file)
@@ -455,13 +455,13 @@ opkg_install_cmd(int argc, char **argv)
 
      for (i=0; i < argc; i++) {
          arg = argv[i];
-          if (opkg_install_by_name(arg) != 0) {
+          if (opkg_install_by_name(arg)) {
               opkg_msg(ERROR, "Cannot install package %s.\n", arg);
               err = -1;
          }
      }
 
-     if (opkg_configure_packages(NULL) != 0)
+     if (opkg_configure_packages(NULL))
          err = -1;
 
      write_status_files_if_changed();