Commit bacfecb2 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

dictionary: intptr_t to be nice with LLP64.

parent 18ed8d72
...@@ -37,7 +37,7 @@ static void test_dictionary_validity (vlc_dictionary_t * p_dict, const char ** o ...@@ -37,7 +37,7 @@ static void test_dictionary_validity (vlc_dictionary_t * p_dict, const char ** o
{ {
/* Test values and keys now */ /* Test values and keys now */
char ** keys = vlc_dictionary_all_keys( p_dict ); char ** keys = vlc_dictionary_all_keys( p_dict );
long i, j; intptr_t i, j;
assert( keys ); assert( keys );
...@@ -68,7 +68,7 @@ int main (void) ...@@ -68,7 +68,7 @@ int main (void)
}; };
const int size = sizeof(our_keys)/sizeof(our_keys[0]); const int size = sizeof(our_keys)/sizeof(our_keys[0]);
char ** keys; char ** keys;
long i = 0; intptr_t i = 0;
vlc_dictionary_t dict; vlc_dictionary_t dict;
vlc_dictionary_init( &dict, 0 ); vlc_dictionary_init( &dict, 0 );
......
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