Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libquota Remove redundant break statement.



details:   https://anonhg.NetBSD.org/src/rev/2bc1a5a2a19d
branches:  trunk
changeset: 773268:2bc1a5a2a19d
user:      dholland <dholland%NetBSD.org@localhost>
date:      Mon Jan 30 06:39:26 2012 +0000

description:
Remove redundant break statement.

diffstat:

 lib/libquota/quota_nfs.c |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 1a6e510da2d0 -r 2bc1a5a2a19d lib/libquota/quota_nfs.c
--- a/lib/libquota/quota_nfs.c  Mon Jan 30 06:15:22 2012 +0000
+++ b/lib/libquota/quota_nfs.c  Mon Jan 30 06:39:26 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: quota_nfs.c,v 1.1 2012/01/09 15:29:56 dholland Exp $   */
+/*     $NetBSD: quota_nfs.c,v 1.2 2012/01/30 06:39:26 dholland Exp $   */
 /*-
   * Copyright (c) 2011 Manuel Bouyer
   * All rights reserved.
@@ -26,7 +26,7 @@
   */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: quota_nfs.c,v 1.1 2012/01/09 15:29:56 dholland Exp $");
+__RCSID("$NetBSD: quota_nfs.c,v 1.2 2012/01/30 06:39:26 dholland Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h> /* XXX for DEV_BSIZE */
@@ -199,7 +199,6 @@
        case Q_NOQUOTA:
                quotaval_clear(qv);
                return 0;
-               break;
        case Q_EPERM:
                errno = EACCES;
                return -1;



Home | Main Index | Thread Index | Old Index