blob: 5519f1b2476a2fa2fb34d851005e47ec9ae9088f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-al,v 1.2 1998/08/07 10:40:21 agc Exp $
--- as/pops.c.orig Thu Jul 16 20:24:45 1998
+++ as/pops.c Thu Jul 16 20:25:42 1998
@@ -72,7 +72,7 @@
register struct sym_s *symptr;
{
if ((symptr->type & LABIT ||
- symptr->data & IMPBIT && !(symptr->data & UNDBIT)) &&
+ (symptr->data & IMPBIT && !(symptr->data & UNDBIT))) &&
((symptr->data ^ lcdata) & (RELBIT | SEGM)))
{
error(SEGREL);
|