summaryrefslogtreecommitdiff
path: root/apps/gui/wps_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/wps_debug.c')
-rw-r--r--apps/gui/wps_debug.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/gui/wps_debug.c b/apps/gui/wps_debug.c
index 767f296cdd..8ba4b6f000 100644
--- a/apps/gui/wps_debug.c
+++ b/apps/gui/wps_debug.c
@@ -340,7 +340,12 @@ static void dump_wps_tokens(struct wps_data *data)
340 break; 340 break;
341 341
342 case WPS_TOKEN_FILE_FREQUENCY: 342 case WPS_TOKEN_FILE_FREQUENCY:
343 snprintf(buf, sizeof(buf), "%sfile audio frequency", 343 snprintf(buf, sizeof(buf), "%sfile audio frequency in Hz",
344 next_str(next));
345 break;
346
347 case WPS_TOKEN_FILE_FREQUENCY_KHZ:
348 snprintf(buf, sizeof(buf), "%sfile audio frequency in KHz",
344 next_str(next)); 349 next_str(next));
345 break; 350 break;
346 351