Raymond Toy pushed to branch issue-242-c-call-char-result-wrong at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • tests/test-return.c
    ... ... @@ -6,10 +6,10 @@ int_to_signed_char(int x)
    6 6
       return (signed char) x;
    
    7 7
     }
    
    8 8
     
    
    9
    -signed short
    
    9
    +short
    
    10 10
     int_to_short(int x)
    
    11 11
     {
    
    12
    -  return (signed short) x;
    
    12
    +  return (short) x;
    
    13 13
     }
    
    14 14
     
    
    15 15
     int