From bc5cb7edc35685ad9b01e49d45a5b25325783c4f Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Wed, 10 Sep 2008 09:53:21 +0000 Subject: [PATCH] plug-ins/file-uri/uri-backend-wget.c s/while (1)/while (TRUE)/ 2008-09-10 Michael Natterer * plug-ins/file-uri/uri-backend-wget.c * plug-ins/file-xjt/xjt.c: s/while (1)/while (TRUE)/ svn path=/trunk/; revision=26912 --- ChangeLog | 5 +++++ plug-ins/file-uri/uri-backend-wget.c | 2 +- plug-ins/file-xjt/xjt.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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);