diff options
author | 2007-07-07 23:59:36 +0000 | |
---|---|---|
committer | 2007-07-07 23:59:36 +0000 | |
commit | 3770d5fb7050c78eea73581b7755b0506e5c146c (patch) | |
tree | 33d97c29f09924c841df2b92120fca0cdb1b384f | |
parent | Make the scan command work, finally. (diff) | |
download | wireguard-openbsd-3770d5fb7050c78eea73581b7755b0506e5c146c.tar.xz wireguard-openbsd-3770d5fb7050c78eea73581b7755b0506e5c146c.zip |
Restore missing '(' to allow successful compilation. Bad pyr@.
-rw-r--r-- | sys/dev/microcode/aic7xxx/aicasm_gram.y | 4 |
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); |