Fix modernize-use-bool-literals

modernize-use-bool-literals flagged one violation in the code.

Tested: No functional change.

Signed-off-by: Ed Tanous <ed.tanous@intel.com>
Change-Id: Iccfa7a88e7df0b7e7434fadd549c2f816c98a46e
diff --git a/http/query_string.h b/http/query_string.h
index 0cd21e4..959eb68 100644
--- a/http/query_string.h
+++ b/http/query_string.h
@@ -397,7 +397,7 @@
         char* element = nullptr;
 
         int count = 0;
-        while (1)
+        while (true)
         {
             element = qsK2v(plus.c_str(), keyValuePairs.data(),
                             static_cast<int>(keyValuePairs.size()), count++);