From d62daf09e8d51a27a1b664e8906ef85b97ab47fb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Mon, 13 Dec 1999 21:44:15 +0100
Subject: [PATCH] Fixed bug in ~ on types.

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

diff --git a/src/operators.c b/src/operators.c
index 2ada04e362..d870a25583 100644
--- a/src/operators.c
+++ b/src/operators.c
@@ -6,7 +6,7 @@
 /**/
 #include "global.h"
 #include <math.h>
-RCSID("$Id: operators.c,v 1.74 1999/12/13 20:18:00 grubba Exp $");
+RCSID("$Id: operators.c,v 1.75 1999/12/13 20:44:15 grubba Exp $");
 #include "interpret.h"
 #include "svalue.h"
 #include "multiset.h"
@@ -1871,7 +1871,7 @@ void o_compl(void)
 
   case T_TYPE:
     type_stack_mark();
-    push_unfinished_type(sp[-1].u.string);
+    push_unfinished_type(sp[-1].u.string->str);
     push_type(T_NOT);
     pop_stack();
     push_string(pop_unfinished_type());
-- 
GitLab