diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2004-10-26 14:16:12 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2004-10-26 14:16:12 (GMT) |
commit | ee176b800c07aa1a7184109c3c901b3cec8e2d07 (patch) | |
tree | 9f887431081959e327ab7452402de6d6595040e7 /macosx | |
parent | 701b804f4d2ecbd1cd2ab49ae942cb63f79d1151 (diff) | |
download | tk-ee176b800c07aa1a7184109c3c901b3cec8e2d07.zip tk-ee176b800c07aa1a7184109c3c901b3cec8e2d07.tar.gz tk-ee176b800c07aa1a7184109c3c901b3cec8e2d07.tar.bz2 |
Fix silly typo
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXRegion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXRegion.c b/macosx/tkMacOSXRegion.c index 2f12798..2dbfde0 100644 --- a/macosx/tkMacOSXRegion.c +++ b/macosx/tkMacOSXRegion.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXRegion.c,v 1.3 2004/10/26 13:15:09 dkf Exp $ + * RCS: @(#) $Id: tkMacOSXRegion.c,v 1.4 2004/10/26 14:16:12 dkf Exp $ */ #include "tkInt.h" @@ -287,7 +287,7 @@ TkpBuildRegionFromAlphaData( for (y1 = 0; y1 < height; y1++) { lineDataPtr = dataPtr; - for {x1 = 0; x1 < width; x1 = end) { + for (x1 = 0; x1 < width; x1 = end) { /* search for first non-transparent pixel */ while ((x1 < width) && !*lineDataPtr) { x1++; |