diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2023-05-25 12:47:04 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2023-05-25 12:47:04 -0400 |
commit | 11e858b20992828c58b18cbaa225e7bef317a535 (patch) | |
tree | df18669dfe4804fe1ed3909303df53f2a2d23305 | |
parent | 220fb04250905b681eca412ab325fc2957ee0c8b (diff) | |
download | rockbox-11e858b209.tar.gz rockbox-11e858b209.zip |
fix yellow introduced in previous commit
Change-Id: I794f6423853cf5d2c368de55f4be2ce54e3076c9
-rw-r--r-- | firmware/target/hosted/filesystem-app.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/target/hosted/filesystem-app.c b/firmware/target/hosted/filesystem-app.c index f0b3a662b2..9c2ff8c99b 100644 --- a/firmware/target/hosted/filesystem-app.c +++ b/firmware/target/hosted/filesystem-app.c @@ -584,6 +584,7 @@ int os_volume_path(IF_MV(int volume, ) char *buffer, size_t bufsize) char volname[VOL_MAX_LEN + 1]; get_volume_name(volume, volname); #else + IF_MV((void)volume;) const char *volname = "/"; #endif |