gssd_proc.c: In function ‘handle_krb5_upcall’: gssd_proc.c:1117:2: warning: ISO C forbids ‘return’ with expression, in function returning void [-pedantic] Signed-off-by: Chuck Lever <chuck.lever@xxxxxxxxxx> --- utils/gssd/gssd_proc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/utils/gssd/gssd_proc.c b/utils/gssd/gssd_proc.c index 1bc3942..ec251fa 100644 --- a/utils/gssd/gssd_proc.c +++ b/utils/gssd/gssd_proc.c @@ -1116,7 +1116,7 @@ handle_krb5_upcall(struct clnt_info *clp) return; } - return process_krb5_upcall(clp, uid, clp->krb5_fd, NULL, NULL); + process_krb5_upcall(clp, uid, clp->krb5_fd, NULL, NULL); } void -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html