Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/wscons make sizes unsigned
details: https://anonhg.NetBSD.org/src/rev/e7ce8bdb8905
branches: trunk
changeset: 766636:e7ce8bdb8905
user: macallan <macallan%NetBSD.org@localhost>
date: Wed Jun 29 04:50:32 2011 +0000
description:
make sizes unsigned
diffstat:
sys/dev/wscons/wsconsio.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (20 lines):
diff -r b7a3059c3572 -r e7ce8bdb8905 sys/dev/wscons/wsconsio.h
--- a/sys/dev/wscons/wsconsio.h Wed Jun 29 03:14:36 2011 +0000
+++ b/sys/dev/wscons/wsconsio.h Wed Jun 29 04:50:32 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: wsconsio.h,v 1.97 2011/06/29 03:06:16 macallan Exp $ */
+/* $NetBSD: wsconsio.h,v 1.98 2011/06/29 04:50:32 macallan Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -575,8 +575,8 @@
*/
struct wsdisplayio_edid_info {
- int buffer_size;
- int data_size;
+ uint32_t buffer_size;
+ uint32_t data_size;
uint8_t *edid_data;
};
#define WSDISPLAYIO_GET_EDID _IOWR('W', 102, struct wsdisplayio_edid_info)
Home |
Main Index |
Thread Index |
Old Index