vboxsf: remove redundant variable out_len
authorColin Ian King <colin.i.king@gmail.com>
Thu, 29 Feb 2024 22:51:38 +0000 (22:51 +0000)
committerHans de Goede <hdegoede@redhat.com>
Wed, 3 Apr 2024 13:55:33 +0000 (15:55 +0200)
commit0200ceed3042222a1f78b3e79ec71a5a52977e3a
tree118cab98d9d6d1298ec669e46088b644ccddc243
parent4cece764965020c22cff7665b18a012006359095
vboxsf: remove redundant variable out_len

The variable out_len is being used to accumulate the number of
bytes but it is not being used for any other purpose. The variable
is redundant and can be removed.

Cleans up clang scan build warning:
fs/vboxsf/utils.c:443:9: warning: variable 'out_len' set but not
used [-Wunused-but-set-variable]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20240229225138.351909-1-colin.i.king@gmail.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
fs/vboxsf/utils.c