Skip to content

Commit

Permalink
Fixed type mismatch between lib/libzpool/common/kernel.c and zfs_cont…
Browse files Browse the repository at this point in the history
…ext.h
  • Loading branch information
BjoKaSH committed Sep 2, 2012
1 parent d3df144 commit e85d2cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usr/src/lib/libzpool/common/kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -826,13 +826,13 @@ size_t u8_textprep_str(char *i, size_t *il, char *o, size_t *ol, int nf,
}

uid_t
crgetuid(cred_t *cr)
crgetuid(const cred_t *cr)
{
return (0);
}

gid_t
crgetgid(cred_t *cr)
crgetgid(const cred_t *cr)
{
return (0);
}
Expand Down

0 comments on commit e85d2cc

Please sign in to comment.