diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-08-26 14:14:54 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-08-26 14:14:54 +0000 |
commit | 4906fb47f340bea7d2ba551364d1a5d8d0473861 (patch) | |
tree | 1ca2cbed515675150be45f06f0cbb779683ca626 /plugins/AdvaImg/src/LibJPEG/jpegtran.c | |
parent | af85ed40e26a345cc15ba7f310c92a62116865d1 (diff) |
libjpeg update
git-svn-id: http://svn.miranda-ng.org/main/trunk@5843 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AdvaImg/src/LibJPEG/jpegtran.c')
-rw-r--r-- | plugins/AdvaImg/src/LibJPEG/jpegtran.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/AdvaImg/src/LibJPEG/jpegtran.c b/plugins/AdvaImg/src/LibJPEG/jpegtran.c index 2193ffe377..c15664a4f4 100644 --- a/plugins/AdvaImg/src/LibJPEG/jpegtran.c +++ b/plugins/AdvaImg/src/LibJPEG/jpegtran.c @@ -1,7 +1,7 @@ /*
* jpegtran.c
*
- * Copyright (C) 1995-2011, Thomas G. Lane, Guido Vollbeding.
+ * Copyright (C) 1995-2012, Thomas G. Lane, Guido Vollbeding.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README file.
*
@@ -467,7 +467,7 @@ main (int argc, char **argv) /* Adjust default decompression parameters */
if (scaleoption != NULL)
- if (sscanf(scaleoption, "%d/%d",
+ if (sscanf(scaleoption, "%u/%u",
&srcinfo.scale_num, &srcinfo.scale_denom) < 1)
usage();
|