]> git.sur5r.net Git - cc65/commitdiff
Adjustments in response to latest comments 424/head
authorLauri Kasanen <cand@gmx.com>
Thu, 18 May 2017 14:14:26 +0000 (17:14 +0300)
committerLauri Kasanen <cand@gmx.com>
Thu, 18 May 2017 14:14:26 +0000 (17:14 +0300)
src/cc65/funcdesc.h
src/cc65/pragma.c
test/val/trampoline.c

index 966aff5734f997fec96f996e0d63610c30eb3f27..040f6e97c91cf70b5dfc3c1b3ad586a8a8296ff1 100644 (file)
@@ -67,8 +67,8 @@ struct FuncDesc {
     unsigned            ParamCount;     /* Number of parameters              */
     unsigned            ParamSize;      /* Size of the parameters            */
     struct SymEntry*    LastParam;      /* Pointer to last parameter         */
-    struct SymEntry*    WrappedCall;     /* Pointer to the WrappedCall         */
-    unsigned char       WrappedCallData; /* The WrappedCall's user data        */
+    struct SymEntry*    WrappedCall;    /* Pointer to the WrappedCall        */
+    unsigned char       WrappedCallData;/* The WrappedCall's user data       */
 };
 
 
index 2cd510ff83278ecbffd505554b7da98e12fc5ca9..8d5dfd8b17882e30855992518904eb7495d8ea72 100644 (file)
@@ -517,7 +517,7 @@ static void WrappedCallPragma (StrBuf* B)
     } else {
 
         /* Segment name is invalid */
-        Error ("Wrapped-call target does not exist or is not a function or array");
+        Error ("Wrapped-call target does not exist or is not a function");
 
     }
 
index 6723df9b3fe7d883a6636c0622e0ca9d84835155..63741b5909961133d5b2b4bc553a70e0bacde1a6 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  !!DESCRIPTION!! trampoline pragma
+  !!DESCRIPTION!! wrapped-call pragma used for trampolines
   !!ORIGIN!!      cc65 regression tests
   !!LICENCE!!     Public Domain
   !!AUTHOR!!      Lauri Kasanen