Ignore:
Timestamp:
Jan 24, 2024, 7:31:46 PM (19 months ago)
Author:
gyoung
Message:

Fix compiler warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/c/c_common/except.c

    r108 r144  
    652652          fprintf(hTrap,"OS/2 Version %d.%d\n",Version[0]/10,Version[1]);
    653653          rc=DosQueryModFromEIP( &hMod, &ObjNum, CCHMAXPATH,
    654                                  Name, &Offset, pERepRec->ExceptionAddress);
     654                                 Name, &Offset, (ULONG) pERepRec->ExceptionAddress);
    655655            if (rc==0) {
    656656              fprintf(hTrap,"Failing code module internal name : %s\n",Name);
     
    10251025         } else {
    10261026            rc = DosQueryModFromEIP(&hMod, &ObjNum, sizeof(Name),
    1027                                     Name, &Offset, (PVOID)RetAddr);
     1027                                    Name, &Offset, (ULONG) RetAddr);
    10281028            if (rc == NO_ERROR && ObjNum != -1)
    10291029            {
     
    20392039
    20402040/*   stackofs += stack_ebp; */
    2041    if (1 || func_ofs == pubfunc_ofs) {
     2041   if (1 || func_ofs == pubfunc_ofs) { //fixme GKY 1-22-24 why is this here since its always true
    20422042      for(n = 0; n < var_ofs; n++) {
    20432043         if (AutoVarsFound==FALSE) {
Note: See TracChangeset for help on using the changeset viewer.