Commit f042209c authored by Ferenc Wagner's avatar Ferenc Wagner Committed by Alexandre Julliard

Silence some signedness warnings.

parent 0a63a72f
...@@ -515,8 +515,7 @@ report (enum report_type t, ...) ...@@ -515,8 +515,7 @@ report (enum report_type t, ...)
va_start (ap, t); va_start (ap, t);
if (t < sizeof text_funcs / sizeof text_funcs[0] && if (t < sizeof text_funcs / sizeof text_funcs[0] &&
t < sizeof GUI_funcs / sizeof GUI_funcs[0] && t < sizeof GUI_funcs / sizeof GUI_funcs[0]) ret = funcs[t](ap);
t >= 0) ret = funcs[t](ap);
else report (R_WARNING, "unimplemented report type: %d", t); else report (R_WARNING, "unimplemented report type: %d", t);
va_end (ap); va_end (ap);
return ret; return ret;
......
...@@ -192,7 +192,8 @@ const char* get_file_rev(const char* file) ...@@ -192,7 +192,8 @@ const char* get_file_rev(const char* file)
void extract_rev_infos () void extract_rev_infos ()
{ {
char revinfo[256], *p; char revinfo[256], *p;
int size = 0, i, len; int size = 0, i;
unsigned int len;
HMODULE module = GetModuleHandle (NULL); HMODULE module = GetModuleHandle (NULL);
for (i = 0; TRUE; i++) { for (i = 0; TRUE; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment