Commit 471980d9dc246da210d73fc91c27627cfdce076d

suzuki toshiya 2009-08-01T00:32:20

smooth: Improve the format in debug message.

diff --git a/ChangeLog b/ChangeLog
index 06aa7e9..1ea1742 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2009-07-31  suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
 
+	smooth: Improve the format in debug message.
+
+	* src/smooth/ftgrays.c (gray_dump_cells): Improve the
+	format specifications to dump variables.
+
+2009-07-31  suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
+
 	sfnt: Fix a data type mismatching with its source.
 
 	* src/sfnt/sfobjs.c (sfnt_load_face): The type of
diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c
index ba5541d..846e454 100644
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -1349,7 +1349,7 @@
       printf( "%3d:", yindex );
 
       for ( cell = ras.ycells[yindex]; cell != NULL; cell = cell->next )
-        printf( " (%3d, c:%4d, a:%6d)", cell->x, cell->cover, cell->area );
+        printf( " (%3ld, c:%4ld, a:%6d)", cell->x, cell->cover, cell->area );
       printf( "\n" );
     }
   }