diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-02-22 08:30:46 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-02-22 08:30:46 +0000 |
commit | 95dc81ae9b9a9ff5088c08b567127f2211d0d58a (patch) | |
tree | 4033f713796ce61980ebca2b581ce2621d9397b0 /usr.bin/rcs/buf.h | |
parent | bc038120c73fb339c795df6125657b2371161de4 (diff) |
Fix const inconsistencies, void pointer artithmetic;
Based on diff from otto@ in OpenCVS. OK otto@.
Diffstat (limited to 'usr.bin/rcs/buf.h')
-rw-r--r-- | usr.bin/rcs/buf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/buf.h b/usr.bin/rcs/buf.h index d63a7cfcaf1..4d966c1ced6 100644 --- a/usr.bin/rcs/buf.h +++ b/usr.bin/rcs/buf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: buf.h,v 1.7 2007/02/16 03:00:52 ray Exp $ */ +/* $OpenBSD: buf.h,v 1.8 2007/02/22 08:30:45 xsa Exp $ */ /* * Copyright (c) 2003 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -57,5 +57,5 @@ size_t rcs_buf_len(BUF *); int rcs_buf_write_fd(BUF *, int); int rcs_buf_write(BUF *, const char *, mode_t); void rcs_buf_write_stmp(BUF *, char *); -void *rcs_buf_get(BUF *b); +u_char *rcs_buf_get(BUF *b); #endif /* BUF_H */ |