Skip to content
Snippets Groups Projects
Commit dea7d84f authored by Zhang Han's avatar Zhang Han Committed by Gerd Hoffmann
Browse files

audio: Don't use '%#' in format strings


Use '0x' prefix instead of '%#'

Signed-off-by: default avatarZhang Han <zhanghan64@huawei.com>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20210115012431.79533-1-zhanghan64@huawei.com
Message-Id: <20210115012431.79533-6-zhanghan64@huawei.com>
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
parent c60840c7
No related branches found
No related tags found
No related merge requests found
...@@ -215,7 +215,7 @@ static void dsound_log_hresult (HRESULT hr) ...@@ -215,7 +215,7 @@ static void dsound_log_hresult (HRESULT hr)
break; break;
#endif #endif
default: default:
AUD_log (AUDIO_CAP, "Reason: Unknown (HRESULT %#lx)\n", hr); AUD_log (AUDIO_CAP, "Reason: Unknown (HRESULT 0x%lx)\n", hr);
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment