Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alexmarsev/libbs2b.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhartwork <hartwork@bc0edfbe-c936-4687-b64d-f70bc3985e72>2009-06-13 01:15:40 +0400
committerhartwork <hartwork@bc0edfbe-c936-4687-b64d-f70bc3985e72>2009-06-13 01:15:40 +0400
commit829a9c7c6d45d65e337c9d7f806b9a16aeb07865 (patch)
tree0f5e11e6198b6aa09b5263bec869addaa5f188bb
parent7ce3643b37047096b865c57ef17935d811998cac (diff)
Apply format string compile patch by Ilya Kotov
git-svn-id: svn://svn.code.sf.net/p/bs2b/code/trunk/libbs2b@170 bc0edfbe-c936-4687-b64d-f70bc3985e72
-rw-r--r--ChangeLog3
-rw-r--r--src/bs2bconvert.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d0669a5..81e3717 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2009-06-12 Sebastian Pipping <sebastian@pipping.org>
+ * Apply format string compile patch by Ilya Kotov
+
2009-05-26 Boris Mikhaylov <http://www.tmn.ru/~bor>
3.1.0
diff --git a/src/bs2bconvert.c b/src/bs2bconvert.c
index 24531b2..92e1b5c 100644
--- a/src/bs2bconvert.c
+++ b/src/bs2bconvert.c
@@ -153,7 +153,7 @@ int main( int argc, char *argv[] )
if( ( infile = sf_open( infilename, SFM_READ, &sfinfo ) ) == NULL )
{
printf( "Not able to open input file %s.\n", infilename );
- printf( sf_strerror( NULL ) );
+ printf( "%s",sf_strerror( NULL ) );
return 1;
}