[Git][cmucl/cmucl][issue-242-c-call-char-result-wrong] Change `signed short` to `short`

Raymond Toy (@rtoy) gitlab at common-lisp.net
Fri Jun 30 21:17:47 UTC 2023



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


Commits:
88d71368 by Raymond Toy at 2023-06-30T14:17:04-07:00
Change `signed short` to `short`

`short` is always signed.

- - - - -


1 changed file:

- tests/test-return.c


Changes:

=====================================
tests/test-return.c
=====================================
@@ -6,10 +6,10 @@ int_to_signed_char(int x)
   return (signed char) x;
 }
 
-signed short
+short
 int_to_short(int x)
 {
-  return (signed short) x;
+  return (short) x;
 }
 
 int



View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/88d71368da29315d7b6a457771690a62b96bd6d8

-- 
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/88d71368da29315d7b6a457771690a62b96bd6d8
You're receiving this email because of your account on gitlab.common-lisp.net.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/cmucl-cvs/attachments/20230630/c912d47f/attachment-0001.html>


More information about the cmucl-cvs mailing list