commit | c818a4e66281a5dcf30a0cb13d0a667aef2b78be | [log] [tgz] |
---|---|---|
author | Mike McCormack <mike@codeweavers.com> | Wed Sep 21 09:46:28 2005 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Sep 21 09:46:28 2005 +0000 |
tree | 4c8f7ba0782838d93a526e235d7c7533cf253aa1 | |
parent | 6dc309187cef40373306699e600646ea92c3803b [diff] [blame] |
Fix "empty body in an if/else-statement" warnings.
diff --git a/dlls/user/text.c b/dlls/user/text.c index be4f0cc..c05d008 100644 --- a/dlls/user/text.c +++ b/dlls/user/text.c
@@ -472,9 +472,10 @@ assert (max >= n); max -= n; while (n--) + { if (*start_str++ == PREFIX && max--) start_str++; - else; + } start_count -= (start_str - str_on_entry); } else @@ -532,7 +533,6 @@ str++; ns--; } - else; i++; } return result;