Tcl Source Code

Check-in [256e20e731]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:silence compiler warning
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-5-branch
Files: files | file ages | folders
SHA1: 256e20e731a57dab3fb74a36b5226a6efc6e4462
User & Date: dgp 2011-05-25 13:42:22
Context
2011-05-25
14:15
Bump to msgcat 1.4.4. check-in: efa6a87106 user: dgp tags: core-8-5-branch
13:42
silence compiler warning check-in: 256e20e731 user: dgp tags: core-8-5-branch
2011-05-24
14:55
Update to Olson tzdata2011g check-in: bbc19ec223 user: venkat tags: core-8-5-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tclCompile.c.

3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
	 */

	for (k=0;k<n;k++) {
	    hPtr = Tcl_CreateHashEntry(&eclPtr->litInfo, INT2PTR(map[k].pc), &isnew);
	    Tcl_SetHashValue(hPtr, INT2PTR(map[k].cmd));
	}

	ckfree (map);
    }

    return 1;			/* the jump was grown */
}

/*
 *----------------------------------------------------------------------







|







3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
	 */

	for (k=0;k<n;k++) {
	    hPtr = Tcl_CreateHashEntry(&eclPtr->litInfo, INT2PTR(map[k].pc), &isnew);
	    Tcl_SetHashValue(hPtr, INT2PTR(map[k].cmd));
	}

	ckfree ((char *) map);
    }

    return 1;			/* the jump was grown */
}

/*
 *----------------------------------------------------------------------