diff options
author | Bob Peterson <rpeterso@redhat.com> | 2023-06-28 08:50:46 -0500 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2023-09-05 15:58:18 +0200 |
commit | 36a740916a94ea0efa0c5c2ddcd9dcdce56c9a40 (patch) | |
tree | 795a32fae1f0280f5800012a7b225eaf6314dc19 /fs/gfs2/quota.c | |
parent | 9ab7b78a13aff5bcb3b76380f551ed5cf4125280 (diff) |
gfs2: Remove useless assignment
This assignment is unnecessary because if error was not already 0, it
would have branched to an error label already.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/quota.c')
-rw-r--r-- | fs/gfs2/quota.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c index 8b6a1c14a03e..678d2e749db8 100644 --- a/fs/gfs2/quota.c +++ b/fs/gfs2/quota.c @@ -971,8 +971,6 @@ static int do_sync(unsigned int num_qd, struct gfs2_quota_data **qda) set_bit(QDF_REFRESH, &qd->qd_flags); } - error = 0; - out_end_trans: gfs2_trans_end(sdp); out_ipres: |