Commit 10f01e27 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Pointer cast warning

parent 5c97e6fc
...@@ -560,7 +560,7 @@ int vout_Snapshot( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -560,7 +560,7 @@ int vout_Snapshot( vout_thread_t *p_vout, picture_t *p_pic )
DIR *path; DIR *path;
int i_ret; int i_ret;
bool b_embedded_snapshot; bool b_embedded_snapshot;
uintmax_t i_id = (uintmax_t)NULL; uintmax_t i_id = (uintptr_t)NULL;
/* */ /* */
val.psz_string = var_GetNonEmptyString( p_vout, "snapshot-path" ); val.psz_string = var_GetNonEmptyString( p_vout, "snapshot-path" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment