fix missing comparison

This commit is contained in:
christos 2011-02-05 19:10:40 +00:00
parent 8e14f999b7
commit 4c07b5ae7d
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh -
# $NetBSD: mkops,v 1.3 2011/02/05 17:29:48 christos Exp $
# $NetBSD: mkops,v 1.4 2011/02/05 19:10:40 christos Exp $
#
# Copyright (c) 2011 The NetBSD Foundation, Inc.
# All rights reserved.
@ -119,7 +119,7 @@ END {
printf("{\n");
printf("\tsize_t i;\n");
printf("\n");
printf("\tfor (i = 0; __arraycount(imods); i++)\n");
printf("\tfor (i = 0; i < __arraycount(imods); i++)\n");
printf("\t\tif (imods[i].ok)\n");
printf("\t\t\tSTRUCT_ASSIGN(modtab[i], imods[i].m);\n");
printf("}\n");