diff options
-rw-r--r-- | src/IO/http.c | 2 | ||||
-rw-r--r-- | src/css.cc | 2 | ||||
-rw-r--r-- | src/dicache.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/IO/http.c b/src/IO/http.c index 15cd173c..9b4028e8 100644 --- a/src/IO/http.c +++ b/src/IO/http.c @@ -794,7 +794,7 @@ static void Http_socket_reuse(int SKey) srv->active_conns--; Http_socket_free(SKey); - MSG("Reusing fd %d for %s\n", new_sd->SockFD,URL_STR(new_sd->url)); + _MSG("Reusing fd %d for %s\n",new_sd->SockFD,URL_STR(new_sd->url)); Http_socket_activate(srv, new_sd); Http_fd_map_add_entry(new_sd); a_Http_connect_done(new_sd->SockFD, success); @@ -535,7 +535,7 @@ void CssContext::addRule (CssSelector *sel, CssPropertyList *props, if ((order == CSS_PRIMARY_AUTHOR || order == CSS_PRIMARY_AUTHOR_IMPORTANT) && !rule->isSafe ()) { - MSG_WARN ("Ignoring unsafe author style that might reveal browsing history\n"); + _MSG_WARN ("Ignoring unsafe author style that might reveal browsing history\n"); delete rule; } else { rule->selector->setMatchCacheOffset(matchCache.size ()); diff --git a/src/dicache.c b/src/dicache.c index a2904c32..1fc71e19 100644 --- a/src/dicache.c +++ b/src/dicache.c @@ -521,7 +521,7 @@ void a_Dicache_cleanup(void) --i; /* adjust counter */ } } - MSG("a_Dicache_cleanup: length = %d\n", dList_length(CachedIMGs)); + _MSG("a_Dicache_cleanup: length = %d\n", dList_length(CachedIMGs)); } /* ------------------------------------------------------------------------- */ |