diff options
author | assar <assar@FreeBSD.org> | 2001-07-22 00:12:22 +0000 |
---|---|---|
committer | assar <assar@FreeBSD.org> | 2001-07-22 00:12:22 +0000 |
commit | 6833b4cd915e72ca84c9cdfcf99ee35856352de2 (patch) | |
tree | 638735d78946507ccfa13d2d196fe399527277a2 /sys/compat/svr4/svr4_misc.c | |
parent | 352a508a9620f9dc3ff9678d9ec38872980977c6 (diff) | |
download | FreeBSD-src-6833b4cd915e72ca84c9cdfcf99ee35856352de2.zip FreeBSD-src-6833b4cd915e72ca84c9cdfcf99ee35856352de2.tar.gz |
get rid of some printf and pointer type warnings
Diffstat (limited to 'sys/compat/svr4/svr4_misc.c')
-rw-r--r-- | sys/compat/svr4/svr4_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/svr4/svr4_misc.c b/sys/compat/svr4/svr4_misc.c index a92e8a4..6865880 100644 --- a/sys/compat/svr4/svr4_misc.c +++ b/sys/compat/svr4/svr4_misc.c @@ -921,7 +921,7 @@ svr4_sys_ulimit(p, uap) return error; SCARG(&srl, which) = RLIMIT_FSIZE; - SCARG(&srl, rlp) = (struct orlimit *)url; + SCARG(&srl, rlp) = url; error = setrlimit(p, &srl); if (error) |