diff options
Diffstat (limited to 'libopkg')
-rw-r--r-- | libopkg/opkg_cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopkg/opkg_cmd.c b/libopkg/opkg_cmd.c index 1c9f6fc..c5ba3f4 100644 --- a/libopkg/opkg_cmd.c +++ b/libopkg/opkg_cmd.c @@ -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(); |