View | Details | Raw Unified | Return to bug 1225909
Collapse All | Expand All

(-)config/signedchar.c (-1 / +1 lines)
Lines 1-4 Link Here
1
main()
1
int main()
2
{
2
{
3
 signed char x = 'a';
3
 signed char x = 'a';
4
 return (x - 'a');
4
 return (x - 'a');
(-)config/unsigned.c (+2 lines)
Lines 1-3 Link Here
1
#include <stdlib.h>
2
1
int main()
3
int main()
2
{
4
{
3
 char x[] = "\377";
5
 char x[] = "\377";
(-)pTk/config/Hstrdup.c (+1 lines)
Lines 1-4 Link Here
1
#include <string.h>
1
#include <string.h>
2
#include <stdlib.h>
2
3
3
#define STRING "Whatever"
4
#define STRING "Whatever"
4
5
(-)pTk/config/Hstrtoul.c (+1 lines)
Lines 1-3 Link Here
1
#include <string.h>
1
#include <stdlib.h>
2
#include <stdlib.h>
2
3
3
int main()
4
int main()
(-)pTk/mTk/generic/tkEvent.c (+1 lines)
Lines 1153-1158 TkEventDeadWindow(winPtr) Link Here
1153
Time
1153
Time
1154
TkCurrentTime(dispPtr, fallbackCurrent)
1154
TkCurrentTime(dispPtr, fallbackCurrent)
1155
    TkDisplay *dispPtr;		/* Display for which the time is desired. */
1155
    TkDisplay *dispPtr;		/* Display for which the time is desired. */
1156
    int fallbackCurrent;
1156
{
1157
{
1157
    register XEvent *eventPtr;
1158
    register XEvent *eventPtr;
1158
    ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
1159
    ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
(-)pTk/mTk/generic/tkImage.c (+2 lines)
Lines 1083-1088 int x; Link Here
1083
int y;
1083
int y;
1084
int width;
1084
int width;
1085
int height;
1085
int height;
1086
int imgWidth;
1087
int imgHeight;
1086
{
1088
{
1087
    Tk_Tile tile = (Tk_Tile) clientData;
1089
    Tk_Tile tile = (Tk_Tile) clientData;
1088
    Tk_TileChange *handler;
1090
    Tk_TileChange *handler;
(-)Event/Event.xs (-1 / +1 lines)
Lines 1532-1538 PROTOTYPES: DISABLE Link Here
1532
BOOT:
1532
BOOT:
1533
 {
1533
 {
1534
#ifdef pWARN_NONE
1534
#ifdef pWARN_NONE
1535
  SV *old_warn = PL_curcop->cop_warnings;
1535
  char *old_warn = PL_curcop->cop_warnings;
1536
  PL_curcop->cop_warnings = pWARN_NONE;
1536
  PL_curcop->cop_warnings = pWARN_NONE;
1537
#endif
1537
#endif
1538
  newXS("Tk::Event::INIT", XS_Tk__Event_INIT, file);
1538
  newXS("Tk::Event::INIT", XS_Tk__Event_INIT, file);
(-)config/pregcomp2.c (-1 / +1 lines)
Lines 4-8 Link Here
4
4
5
int main() {
5
int main() {
6
    SV* sv = newSViv(0);
6
    SV* sv = newSViv(0);
7
    regexp* rx = pregcomp(sv, 0);
7
    void *rx = (void *) pregcomp(sv, 0);
8
}
8
}
(-)pTk/Xlib.t (-1 / +1 lines)
Lines 331-337 VFUNC(int,XIntersectRegion,V_XIntersectR Link Here
331
#endif /* !DO_X_EXCLUDE */
331
#endif /* !DO_X_EXCLUDE */
332
332
333
#ifndef XKeycodeToKeysym
333
#ifndef XKeycodeToKeysym
334
VFUNC(KeySym,XKeycodeToKeysym,V_XKeycodeToKeysym,_ANSI_ARGS_((Display *, unsigned int, int)))
334
VFUNC(KeySym,XKeycodeToKeysym,V_XKeycodeToKeysym,_ANSI_ARGS_((Display *, unsigned char, int)))
335
#endif /* #ifndef XKeycodeToKeysym */
335
#endif /* #ifndef XKeycodeToKeysym */
336
336
337
#ifndef XKeysymToString
337
#ifndef XKeysymToString
(-)pTk/mTk/generic/tkCanvText.c (-1 / +1 lines)
Lines 1250-1256 GetTextIndex(interp, canvas, itemPtr, ob Link Here
1250
	goto doxy;
1250
	goto doxy;
1251
    }
1251
    }
1252
1252
1253
    string = Tcl_GetStringFromObj(obj, &length);
1253
    string = Tcl_GetStringFromObj(obj, NULL);
1254
    c = string[0];
1254
    c = string[0];
1255
    length = strlen(string);
1255
    length = strlen(string);
1256
1256
(-)tkGlue.c (-1 / +1 lines)
Lines 5549-5555 _((pTHX)) Link Here
5549
#define COP_WARNINGS_TYPE SV*
5549
#define COP_WARNINGS_TYPE SV*
5550
#endif
5550
#endif
5551
#ifdef pWARN_NONE
5551
#ifdef pWARN_NONE
5552
 COP_WARNINGS_TYPE old_warn = PL_curcop->cop_warnings;
5552
 char *old_warn = PL_curcop->cop_warnings;
5553
 PL_curcop->cop_warnings = pWARN_NONE;
5553
 PL_curcop->cop_warnings = pWARN_NONE;
5554
#endif
5554
#endif
5555
5555

Return to bug 1225909