diff options
Diffstat (limited to 'apps/gui/wps_debug.c')
| -rw-r--r-- | apps/gui/wps_debug.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/gui/wps_debug.c b/apps/gui/wps_debug.c index 767f296..8ba4b6f 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) break; case WPS_TOKEN_FILE_FREQUENCY: - snprintf(buf, sizeof(buf), "%sfile audio frequency", + snprintf(buf, sizeof(buf), "%sfile audio frequency in Hz", + next_str(next)); + break; + + case WPS_TOKEN_FILE_FREQUENCY_KHZ: + snprintf(buf, sizeof(buf), "%sfile audio frequency in KHz", next_str(next)); break; |