changeset 26529:75c404032a70

Adjust printf length modifier, fixes the warning: qtx/list.c:54: warning: format '%d' expects type 'int', but argument 2 has type 'long int'
author diego
date Mon, 28 Apr 2008 12:01:13 +0000
parents da85ae10987e
children 59466c2ce1f0
files loader/qtx/list.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/loader/qtx/list.c	Mon Apr 28 11:57:38 2008 +0000
+++ b/loader/qtx/list.c	Mon Apr 28 12:01:13 2008 +0000
@@ -51,7 +51,7 @@
     desc.componentFlags=0;
     desc.componentFlagsMask=0;
     
-    printf("Count = %d\n",CountComponents(&desc));
+    printf("Count = %ld\n",CountComponents(&desc));
     
     Restore_LDT_Keeper();
     exit(0);