summaryrefslogtreecommitdiffstats
path: root/src/interp.c
diff options
context:
space:
mode:
authorpolluks <polluks@sdf.lonestar.org>2023-08-27 22:37:10 +0200
committerpolluks <polluks@sdf.lonestar.org>2023-08-27 22:37:10 +0200
commitb97a8fe340073c095c009bc59a61a93a5dfc1e2f (patch)
treef24a6b3dd02f965f575c08eed63667159dfd94d7 /src/interp.c
parentfca17ce76335d58a381392d170356f7c1fb42764 (diff)
Fixed typos
Diffstat (limited to 'src/interp.c')
-rw-r--r--src/interp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp.c b/src/interp.c
index a8a1656..d65767a 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -215,7 +215,7 @@ double eval(struct sheet * sh, struct ent * ent, struct enode * e, int rebuild_g
int r = eval(sh, ent, e->e.o.left, rebuild_graph);
int c = eval(sh, ent, e->e.o.right, rebuild_graph);
if (r < 0 || c < 0) {
- sc_debug("@getent shouldnt be called with negative parameters %d %d", r, c);
+ sc_debug("@getent shouldn't be called with negative parameters %d %d", r, c);
return (double) 0;
}
struct ent * vp = *ATBL(sh, sh->tbl, r, c);