From 7bf2f7c967e7face05909894fb57b7ee5ce664d3 Mon Sep 17 00:00:00 2001 From: "graham.gower" Date: Tue, 29 Jun 2010 01:56:10 +0000 Subject: [PATCH 1/1] Be consistent in how to check return codes for these functions. git-svn-id: http://opkg.googlecode.com/svn/trunk@541 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- libopkg/opkg_cmd.c | 4 ++-- 1 file 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(); -- 2.25.1