summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-10-28 13:53:16 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-10-28 13:53:30 -0400
commitbd02af3413868c5aa343bb9f9c757611087e369c (patch)
tree2b2559e2ea19861a1b9521b903185cfcb6717ee8
parent55a5bfe7409677a26437651798abbc6d87b56089 (diff)
downloadrockbox-bd02af3413868c5aa343bb9f9c757611087e369c.tar.gz
rockbox-bd02af3413868c5aa343bb9f9c757611087e369c.zip
SD: Fix typo in debug menu
Change-Id: I55530ca7b3e735fef0ac6d4151e66ca11e571aa0
-rw-r--r--apps/debug_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 32c34942e6..57c51e7b54 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1364,7 +1364,7 @@ static int disk_callback(int btn, struct gui_synclist *lists)
1364 ver = "Unknown"; 1364 ver = "Unknown";
1365 break; 1365 break;
1366 } 1366 }
1367 simplelist_addline("SDVer: %s\n", ver); 1367 simplelist_addline("SDVer: %s", ver);
1368 if (csd_structure == 0) /* CSD version 1.0 */ 1368 if (csd_structure == 0) /* CSD version 1.0 */
1369#endif 1369#endif
1370 { 1370 {