Module Name: src
Committed By: he
Date: Thu Mar 22 08:52:22 UTC 2012
Modified Files:
src/lib/libarch/alpha: alpha_bus_window.c
Log Message:
Make 'i' unsigned to avoid signed/unsigned comparison warnings from lint.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/lib/libarch/alpha/alpha_bus_window.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libarch/alpha/alpha_bus_window.c
diff -u src/lib/libarch/alpha/alpha_bus_window.c:1.3 src/lib/libarch/alpha/alpha_bus_window.c:1.4
--- src/lib/libarch/alpha/alpha_bus_window.c:1.3 Mon Apr 28 20:22:55 2008
+++ src/lib/libarch/alpha/alpha_bus_window.c Thu Mar 22 08:52:22 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: alpha_bus_window.c,v 1.3 2008/04/28 20:22:55 martin Exp $ */
+/* $NetBSD: alpha_bus_window.c,v 1.4 2012/03/22 08:52:22 he Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -52,7 +52,7 @@ alpha_bus_getwindows(int type, struct al
struct alpha_bus_get_window_count_args count_args;
struct alpha_bus_get_window_args window_args;
struct alpha_bus_window *abw;
- int i;
+ unsigned int i;
count_args.type = type;
if (sysarch(ALPHA_BUS_GET_WINDOW_COUNT, &count_args) != 0)