Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/ddb make the argument of db_write_bytes const (sorry for...



details:   https://anonhg.NetBSD.org/src/rev/399cc09fa3cb
branches:  trunk
changeset: 581429:399cc09fa3cb
user:      drochner <drochner%NetBSD.org@localhost>
date:      Wed Jun 01 15:57:23 2005 +0000

description:
make the argument of db_write_bytes const (sorry for the signature change)

diffstat:

 sys/ddb/db_access.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (15 lines):

diff -r 503bb7586e10 -r 399cc09fa3cb sys/ddb/db_access.h
--- a/sys/ddb/db_access.h       Wed Jun 01 15:55:31 2005 +0000
+++ b/sys/ddb/db_access.h       Wed Jun 01 15:57:23 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: db_access.h,v 1.9 2002/02/15 07:33:49 simonb Exp $     */
+/*     $NetBSD: db_access.h,v 1.10 2005/06/01 15:57:23 drochner Exp $  */
 
 /*
  * Mach Operating System
@@ -36,4 +36,4 @@
 void           db_put_value(db_addr_t, size_t, db_expr_t);
 
 void           db_read_bytes(db_addr_t, size_t, char *);
-void           db_write_bytes(db_addr_t, size_t, char *);
+void           db_write_bytes(db_addr_t, size_t, const char *);



Home | Main Index | Thread Index | Old Index