From a86c2dba68cb96c88f50d3b73822a8d8f10a9297 Mon Sep 17 00:00:00 2001 From: Dave Peticolas Date: Wed, 11 Apr 2001 21:56:48 +0000 Subject: [PATCH] Include stdlib.h for malloc. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3936 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome/gnc-http.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gnome/gnc-http.c b/src/gnome/gnc-http.c index 223955eaa0..f33bf7948d 100644 --- a/src/gnome/gnc-http.c +++ b/src/gnome/gnc-http.c @@ -35,6 +35,7 @@ #include #include #include +#include #include #include "gnc-http.h" @@ -109,7 +110,7 @@ ghttp_check_callback(gpointer data) { req = current->data; if(!req) { - printf(_("NULL request. \n")); + g_warning("NULL request."); continue; }