diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-18 18:43:47 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-18 18:43:47 +0000 |
commit | 7e1e1d207ef6e11fb5790b95c737c9b1f4ffdada (patch) | |
tree | 9f6784239ab8fae1ab8d6c26ae783c8c0976896e /third_party/libpng/pngconf.h | |
parent | f71a1883052a6d722c57b7f08b7770a9d6e0a7fa (diff) | |
download | chromium_src-7e1e1d207ef6e11fb5790b95c737c9b1f4ffdada.zip chromium_src-7e1e1d207ef6e11fb5790b95c737c9b1f4ffdada.tar.gz chromium_src-7e1e1d207ef6e11fb5790b95c737c9b1f4ffdada.tar.bz2 |
Update libpng to 1.2.33.
Review URL: http://codereview.chromium.org/15041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7230 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libpng/pngconf.h')
-rw-r--r-- | third_party/libpng/pngconf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/libpng/pngconf.h b/third_party/libpng/pngconf.h index d1e2995..e9423be 100644 --- a/third_party/libpng/pngconf.h +++ b/third_party/libpng/pngconf.h @@ -1,7 +1,7 @@ /* pngconf.h - machine configurable file for libpng * - * libpng version 1.2.29 - May 8, 2008 + * libpng version 1.2.33 - October 31, 2008 * For conditions of distribution and use, see copyright notice in png.h * Copyright (c) 1998-2008 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) @@ -1123,10 +1123,10 @@ typedef unsigned char png_byte; change (I'm not sure if you will or not, so I thought I'd be safe) */ #ifdef PNG_SIZE_T typedef PNG_SIZE_T png_size_t; -# define png_sizeof(x) png_convert_size(sizeof (x)) +# define png_sizeof(x) png_convert_size(sizeof(x)) #else typedef size_t png_size_t; -# define png_sizeof(x) sizeof (x) +# define png_sizeof(x) sizeof(x) #endif /* The following is needed for medium model support. It cannot be in the |