summaryrefslogtreecommitdiff
path: root/src/list.c
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-14 16:48:58 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-14 16:48:58 +0000
commit4b339f0a4311b4db171584bc6671292a9052665a (patch)
treebd48cdf361c0881f45d09ce46c478ad8674e87c1 /src/list.c
parentcfa9fa24253b5ef8045172852509be413d7b00ca (diff)
Diffstat (limited to 'src/list.c')
-rw-r--r--src/list.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/list.c b/src/list.c
index e0f4774..4aabbad 100644
--- a/src/list.c
+++ b/src/list.c
@@ -48,6 +48,7 @@ in this Software without prior written authorization from The Open Group.
/** TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE **/
/** OR PERFORMANCE OF THIS SOFTWARE. **/
/*****************************************************************************/
+/* $XFree86: xc/programs/twm/list.c,v 1.8 2002/09/24 21:00:27 tsi Exp $ */
/**********************************************************************
@@ -65,6 +66,7 @@ in this Software without prior written authorization from The Open Group.
#include "twm.h"
#include "screen.h"
#include "gram.h"
+#include "util.h"
struct name_list_struct
{
@@ -106,9 +108,9 @@ char *ptr;
if (nptr == NULL)
{
twmrc_error_prefix();
- fprintf (stderr, "unable to allocate %d bytes for name_list\n",
- sizeof(name_list));
- Done();
+ fprintf (stderr, "unable to allocate %ld bytes for name_list\n",
+ (unsigned long)sizeof(name_list));
+ Done(0);
}
nptr->next = *list_head;