summaryrefslogtreecommitdiffstats
path: root/generic/tkBitmap.c
diff options
context:
space:
mode:
authordas <das>2007-06-25 02:04:27 (GMT)
committerdas <das>2007-06-25 02:04:27 (GMT)
commitfebfc914b27e096b01315b934df1057d64ffa5cc (patch)
tree5dba72bb2a080a5f4033ae7e3c07e980cb77d637 /generic/tkBitmap.c
parent5a55c8ea218fb4f824636257632352faf17cf7a0 (diff)
downloadtk-febfc914b27e096b01315b934df1057d64ffa5cc.zip
tk-febfc914b27e096b01315b934df1057d64ffa5cc.tar.gz
tk-febfc914b27e096b01315b934df1057d64ffa5cc.tar.bz2
fix compile errors & warnings introduced by dkf's cleanup
Diffstat (limited to 'generic/tkBitmap.c')
-rw-r--r--generic/tkBitmap.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/generic/tkBitmap.c b/generic/tkBitmap.c
index ad4f36f..c8d83fd 100644
--- a/generic/tkBitmap.c
+++ b/generic/tkBitmap.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkBitmap.c,v 1.17 2007/06/24 16:17:13 dkf Exp $
+ * RCS: @(#) $Id: tkBitmap.c,v 1.18 2007/06/25 02:04:27 das Exp $
*/
#include "tkPort.h"
@@ -1084,9 +1084,11 @@ TkReadBitmapFile(
Display *display,
Drawable d,
const char *filename,
- unsigned int *width_return, *height_return,
+ unsigned int *width_return,
+ unsigned int *height_return,
Pixmap *bitmap_return,
- int *x_hot_return, *y_hot_return)
+ int *x_hot_return,
+ int *y_hot_return)
{
char *data;