]> git.pld-linux.org Git - packages/freetype1.git/blob - format-security.patch
- fix format string warning
[packages/freetype1.git] / format-security.patch
1 --- freetype-1.3.1/test/ftdump.c~       2012-12-12 13:04:33.074183494 +0100
2 +++ freetype-1.3.1/test/ftdump.c        2012-12-12 13:05:19.357515195 +0100
3 @@ -312,7 +312,7 @@
4        printf( "%s\n\n", name_buffer );
5  
6      if ( LookUp_Name( 7 ) )
7 -      printf( name_buffer );
8 +      printf( "%s", name_buffer );
9  
10      printf( "\n" );
11      separator_line( stdout, 78 );
This page took 0.054457 seconds and 4 git commands to generate.