]> git.sur5r.net Git - cc65/commitdiff
Fix strtol 'endptr' return value. 39/head
authorChristian Groessler <chris@groessler.org>
Thu, 12 Sep 2013 10:38:20 +0000 (12:38 +0200)
committerChristian Groessler <chris@groessler.org>
Thu, 12 Sep 2013 10:38:20 +0000 (12:38 +0200)
libsrc/common/strtol.c

index b7ccdf24cbaf2cd85962a44a4710451e5bdf18d5..f3ce08a355780192e660ec6620b8adbca204e4cd 100644 (file)
@@ -102,7 +102,7 @@ long __fastcall__ strtol (const char* nptr, char** endptr, int base)
      */
     if (endptr) {
         if (CvtCount > 0) {
-            *endptr = (char*) S - 1;
+            *endptr = (char*) S;
         } else {
             *endptr = (char*) nptr;
         }