commit | 59970e70412ba37a8e8f19805daf641983558beb | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <chh@google.com> | Thu Dec 11 12:38:46 2014 -0800 |
committer | Chih-Hung Hsieh <chh@google.com> | Thu Dec 11 12:38:46 2014 -0800 |
tree | 1a38f5c349bb780fda9b0995a52f6d328dd5b075 | |
parent | 3570072c362fc379ac83bcae6d9ff43db06ffcfb [diff] |
Fix clang compiler warning. commands.c:176:9: error: comparison of array 'path' equal to a null pointer is always false [-Werror,-Wtautological-pointer-compare] Change-Id: If6253e948ce219c76e9303e5ae39024094294182
diff --git a/fastbootd/commands.c b/fastbootd/commands.c index 98b7866..9be96dc 100644 --- a/fastbootd/commands.c +++ b/fastbootd/commands.c
@@ -173,7 +173,7 @@ return; } - if (path == NULL) { + if (!path[0]) { fastboot_fail(phandle, "Couldn't find partition"); return; }