]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix compiler warnings
authorThomas Veerman <thomas@minix3.org>
Mon, 14 Nov 2011 14:21:39 +0000 (14:21 +0000)
committerThomas Veerman <thomas@minix3.org>
Mon, 14 Nov 2011 14:21:39 +0000 (14:21 +0000)
lib/libpuffs/pnode.c
lib/libpuffs/protect.c
lib/libpuffs/time.c

index b0e665f9c24db68a62a73b08472212c7c5046aab..c135dddeb52972f81c6a6c2f61084bda42048393 100644 (file)
@@ -30,6 +30,7 @@
 __RCSID("$NetBSD: pnode.c,v 1.10 2008/08/12 19:44:39 pooka Exp $");
 #endif /* !lint */
 
+#include <minix/type.h>
 #include <sys/types.h>
 
 #include <assert.h>
@@ -39,6 +40,7 @@ __RCSID("$NetBSD: pnode.c,v 1.10 2008/08/12 19:44:39 pooka Exp $");
 
 #include "puffs.h"
 #include "puffs_priv.h"
+#include "proto.h"
 
 /*
  * Well, you're probably wondering why this isn't optimized.
index 48043ff3df2aa8ba074e4a5673ab8993468eda0a..04f7173f0798c9c959dc70241c2cceb9ad9e240c 100644 (file)
@@ -17,7 +17,6 @@ FORWARD _PROTOTYPE( int in_group, (gid_t grp)                         );
 PUBLIC int fs_chmod()
 {
 /* Perform the chmod(name, mode) system call. */
-  int r;
   struct puffs_node *pn;
   mode_t mode;
   struct vattr va;
@@ -52,7 +51,6 @@ PUBLIC int fs_chmod()
  *===========================================================================*/
 PUBLIC int fs_chown()
 {
-  int r;
   struct puffs_node *pn;
   struct vattr va;
   PUFFS_MAKECRED(pcr, &global_kcred);
index 09eec3de704aa21c9cbfe25899fe7f6ff5a07fbc..26b1b3cc0a28b91d12188e1597b1edd3960ac4b3 100644 (file)
@@ -16,7 +16,6 @@
  *===========================================================================*/
 PUBLIC int fs_utime()
 {
-  int r;
   struct puffs_node *pn;
   struct vattr va;
   PUFFS_MAKECRED(pcr, &global_kcred);