summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2007-07-07 23:59:37 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2007-07-07 23:59:37 +0000
commitb9c46d3251417c8dcc8b2df7715a30ec427da185 (patch)
tree688098f413e760342d673ea4851e26d874a4c052 /sys/dev
parent73496d933775158f5a6147ef896c059945b356ee (diff)
Restore missing '(' to allow successful compilation. Bad pyr@.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/microcode/aic7xxx/aicasm_gram.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/microcode/aic7xxx/aicasm_gram.y b/sys/dev/microcode/aic7xxx/aicasm_gram.y
index cd70b0395c9..1aeee329353 100644
--- a/sys/dev/microcode/aic7xxx/aicasm_gram.y
+++ b/sys/dev/microcode/aic7xxx/aicasm_gram.y
@@ -1,5 +1,5 @@
%{
-/* $OpenBSD: aicasm_gram.y,v 1.15 2007/05/28 22:17:21 pyr Exp $ */
+/* $OpenBSD: aicasm_gram.y,v 1.16 2007/07/07 23:59:36 krw Exp $ */
/* $NetBSD: aicasm_gram.y,v 1.3 2003/04/19 19:26:11 fvdl Exp $ */
/*
@@ -1941,7 +1941,7 @@ yyerror(const char *string)
static int
is_download_const(expression_t *immed)
{
- if (!SLIST_EMPTY(&immed->referenced_syms))
+ if ((!SLIST_EMPTY(&immed->referenced_syms))
&& (SLIST_FIRST(&immed->referenced_syms)->symbol->type == DOWNLOAD_CONST))
return (TRUE);