summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-10-26 14:16:12 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-10-26 14:16:12 (GMT)
commit8827901209d887d86a5625b7f71bcc5831110cf1 (patch)
tree9f887431081959e327ab7452402de6d6595040e7
parent1742f8cc8c8f686b2006e8325f5dc40928da6d62 (diff)
downloadtk-8827901209d887d86a5625b7f71bcc5831110cf1.zip
tk-8827901209d887d86a5625b7f71bcc5831110cf1.tar.gz
tk-8827901209d887d86a5625b7f71bcc5831110cf1.tar.bz2
Fix silly typo
-rw-r--r--macosx/tkMacOSXRegion.c4
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++;