From b204a58e4017612e9cc6572c4de49d216a9ab061 Mon Sep 17 00:00:00 2001 From: adilger <adilger> Date: Mon, 24 Nov 2008 21:40:14 +0000 Subject: [PATCH] Branch HEAD Fix 80-column line overflow. --- lustre/utils/lfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lustre/utils/lfs.c b/lustre/utils/lfs.c index 130f41c71e..6a3bf18f9f 100644 --- a/lustre/utils/lfs.c +++ b/lustre/utils/lfs.c @@ -513,8 +513,8 @@ static int lfs_find(int argc, char **argv) time(&t); optind = 0; - /* when getopt_long_only() hits '!' it returns 1 and puts "!" in optarg */ - while ((c = getopt_long_only(argc, argv, "-A:C:D:g:G:M:n:PpO:qrs:t:u:U:v", + /* when getopt_long_only() hits '!' it returns 1, puts "!" in optarg */ + while ((c = getopt_long_only(argc,argv,"-A:C:D:g:G:M:n:PpO:qrs:t:u:U:v", long_opts, NULL)) >= 0) { xtime = NULL; xsign = NULL; @@ -2178,7 +2178,7 @@ ug_output: rc1 = llapi_quotactl(mnt, &qctl); if (rc1 == -1 && errno == ESRCH) { - fprintf(stderr, "\n%s quotas are not enabled.\n", + fprintf(stderr, "\n%s quotas are not enabled.\n", qctl.qc_type == USRQUOTA ? "user" : "group"); goto out; } -- GitLab