smooth: Improve the format in debug message.
This commit is contained in:
parent
0105905052
commit
471980d9dc
|
@ -1,3 +1,10 @@
|
|||
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.
|
||||
|
|
|
@ -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" );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue