Merge "Fix -Wenum-compare warning" into main
diff --git a/jni/ipphelper/ipphelper.c b/jni/ipphelper/ipphelper.c
index 2da3628..e4683b9 100644
--- a/jni/ipphelper/ipphelper.c
+++ b/jni/ipphelper/ipphelper.c
@@ -1819,7 +1819,7 @@
         response = ippSendRequest(http, request, http_resource);
         if (response == NULL) {
             ipp_status = cupsLastError();
-            if (ipp_status == IPP_INTERNAL_ERROR || ipp_status == HTTP_ERROR) {
+            if (ipp_status == IPP_INTERNAL_ERROR || ipp_status == (ipp_status_t)HTTP_ERROR) {
                 internal_error_retry_count++;
                 if (internal_error_retry_count > IPP_INTERNAL_ERROR_MAX_RETRIES) {
                     break;