From 4613e5409d8b707617e81268d46f776f62cb7233 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Mon, 12 Aug 1996 18:51:57 +0200
Subject: [PATCH] strtol -> STRTOL

Rev: src/opcodes.c:1.7
---
 src/opcodes.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/opcodes.c b/src/opcodes.c
index d0ed78db3b..74e26d36f6 100644
--- a/src/opcodes.c
+++ b/src/opcodes.c
@@ -111,7 +111,7 @@ void cast(struct lpc_string *s)
 	break;
 
       case T_STRING:
-	i=strtol(sp[-1].u.string->str,0,0);
+	i=STRTOL(sp[-1].u.string->str,0,0);
 	free_string(sp[-1].u.string);
 	break;
       
@@ -257,7 +257,7 @@ void f_cast()
 	break;
 
       case T_STRING:
-	i=strtol(sp[-1].u.string->str,0,0);
+	i=STRTOL(sp[-1].u.string->str,0,0);
 	free_string(sp[-1].u.string);
 	break;
       
-- 
GitLab