diff plugins/icq/list.c @ 1977:7b3f1eb1ef7d

[gaim-migrate @ 1987] updated icqlib. fixed import dialog (watch debug window for errors). adam's (not mid's) patch for oscar. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 09 Jun 2001 14:46:51 +0000
parents 8ed70631ed15
children
line wrap: on
line diff
--- a/plugins/icq/list.c	Fri Jun 08 23:17:17 2001 +0000
+++ b/plugins/icq/list.c	Sat Jun 09 14:46:51 2001 +0000
@@ -1,6 +1,8 @@
 /* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
 /*
+ * $Id: list.c 1987 2001-06-09 14:46:51Z warmenhoven $
+ *
  * Copyright (C) 1998-2001, Denis V. Dmitrienko <denis@null.net> and
  *                          Bill Soudan <soudan@kde.org>
  *
@@ -200,12 +202,12 @@
 {
   icq_ListNode *p=plist->head;
 
-  printf("list %x { head=%x, tail=%x, count=%d }\ncontents: ",
-         (int)plist, (int)plist->head, (int)plist->tail, plist->count);
+  printf("list %lx { head=%lx, tail=%lx, count=%d }\ncontents: ",
+         (long)plist, (long)plist->head, (long)plist->tail, plist->count);
 
   while(p)
   {
-    printf("%x, ", (int)p->item);
+    printf("%lx, ", (long)p->item);
     p=p->next;
   }
   printf("end\n");