diff --git a/ChangeLog b/ChangeLog index 520fe2fc52..acea9e506f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-09-10 Michael Natterer + + * plug-ins/file-uri/uri-backend-wget.c + * plug-ins/file-xjt/xjt.c: s/while (1)/while (TRUE)/ + 2008-09-09 Michael Natterer * plug-ins/script-fu/scheme-wrapper.c diff --git a/plug-ins/file-uri/uri-backend-wget.c b/plug-ins/file-uri/uri-backend-wget.c index 8dbb3e2cb3..6635d244d1 100644 --- a/plug-ins/file-uri/uri-backend-wget.c +++ b/plug-ins/file-uri/uri-backend-wget.c @@ -316,7 +316,7 @@ uri_backend_load_image (const gchar *uri, /* Switch to byte parsing wget's output... */ - while (1) + while (TRUE) { dot = fgetc (input); diff --git a/plug-ins/file-xjt/xjt.c b/plug-ins/file-xjt/xjt.c index 2bad91e87b..27213feb01 100644 --- a/plug-ins/file-xjt/xjt.c +++ b/plug-ins/file-xjt/xjt.c @@ -3064,7 +3064,7 @@ p_scann_path_prop (gchar *scan_ptr, } l_ptr = scan_ptr + strlen ("PATH"); - while (1) + while (TRUE) { l_ptr = p_skip_blanks (l_ptr); l_ptr = p_scann_token (l_ptr, &l_param, &l_prop_id);