svn commit: r219097 - head/usr.sbin/fifolog/lib
Poul-Henning Kamp
phk at FreeBSD.org
Mon Feb 28 14:48:00 UTC 2011
Author: phk
Date: Mon Feb 28 14:48:00 2011
New Revision: 219097
URL: http://svn.freebsd.org/changeset/base/219097
Log:
Type-change to ssize_t to (app|pl)ease ppc platform.
Modified:
head/usr.sbin/fifolog/lib/fifolog_int.c
Modified: head/usr.sbin/fifolog/lib/fifolog_int.c
==============================================================================
--- head/usr.sbin/fifolog/lib/fifolog_int.c Mon Feb 28 10:03:48 2011 (r219096)
+++ head/usr.sbin/fifolog/lib/fifolog_int.c Mon Feb 28 14:48:00 2011 (r219097)
@@ -56,7 +56,7 @@ static const char *
fifolog_int_open_i(struct fifolog_file *f, const char *fname, int mode)
{
struct stat st;
- unsigned u;
+ ssize_t u;
int i;
f->fd = open(fname, mode ? O_RDWR : O_RDONLY);
More information about the svn-src-head
mailing list