summaryrefslogtreecommitdiff
path: root/firmware/common/pathfuncs.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/pathfuncs.c')
-rw-r--r--firmware/common/pathfuncs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/common/pathfuncs.c b/firmware/common/pathfuncs.c
index d4f4415526..db1935db8b 100644
--- a/firmware/common/pathfuncs.c
+++ b/firmware/common/pathfuncs.c
@@ -113,6 +113,7 @@ static const unsigned char storage_dec_indexes[STORAGE_NUM_TYPES+1] =
113/* builds a list of drive/volume specifiers <volstr#> */ 113/* builds a list of drive/volume specifiers <volstr#> */
114void init_volume_names(void) 114void init_volume_names(void)
115{ 115{
116 DEBUGF("%s: ", __func__);
116 FOR_EACH_VOLUME(-1, volume) 117 FOR_EACH_VOLUME(-1, volume)
117 { 118 {
118 const char *voldec = ""; 119 const char *voldec = "";
@@ -124,8 +125,9 @@ void init_volume_names(void)
124 voldec = storage_dec_names[storage_dec_indexes[type]]; 125 voldec = storage_dec_names[storage_dec_indexes[type]];
125 snprintf(buffer, VOL_MAX_LEN + 1, "%c%s%d%c", 126 snprintf(buffer, VOL_MAX_LEN + 1, "%c%s%d%c",
126 VOL_START_TOK, voldec, volume, VOL_END_TOK); 127 VOL_START_TOK, voldec, volume, VOL_END_TOK);
127 DEBUGF("%s: vol: %d %s", __func__, volume, buffer); 128 DEBUGF("vol<%d> = %s ", volume, buffer);
128 } 129 }
130 DEBUGF("\n");
129} 131}
130 132
131/* Returns on which volume this is and sets *nameptr to the portion of the 133/* Returns on which volume this is and sets *nameptr to the portion of the