5ba4e4fd59
see http://qemu.org/changelog.html for details new in OpenBSD, support for raw block devices
22 lines
595 B
Plaintext
22 lines
595 B
Plaintext
$OpenBSD: patch-cutils_c,v 1.1 2007/05/01 12:55:14 todd Exp $
|
|
--- cutils.c.orig Mon Feb 5 17:01:54 2007
|
|
+++ cutils.c Tue Apr 3 08:21:27 2007
|
|
@@ -23,7 +23,7 @@
|
|
*/
|
|
#include "vl.h"
|
|
|
|
-void pstrcpy(char *buf, int buf_size, const char *str)
|
|
+void pstrcpy(char *buf, size_t buf_size, const char *str)
|
|
{
|
|
int c;
|
|
char *q = buf;
|
|
@@ -41,7 +41,7 @@ void pstrcpy(char *buf, int buf_size, const char *str)
|
|
}
|
|
|
|
/* strcat and truncate. */
|
|
-char *pstrcat(char *buf, int buf_size, const char *s)
|
|
+char *pstrcat(char *buf, size_t buf_size, const char *s)
|
|
{
|
|
int len;
|
|
len = strlen(buf);
|