From: Pierre d'Herbemont Date: Thu, 7 Jun 2007 21:33:16 +0000 (+0000) Subject: include/vlc/libvlc_structures.h: Fix build by using vlc_int64_t instead of uint64_t. X-Git-Tag: 0.9.0-test0~7098 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=4f7eaeb046a1b825f6680284337ad9f672d77c11;p=vlc include/vlc/libvlc_structures.h: Fix build by using vlc_int64_t instead of uint64_t. --- diff --git a/include/vlc/libvlc_structures.h b/include/vlc/libvlc_structures.h index 76328ddb8a..b5f27f390d 100644 --- a/include/vlc/libvlc_structures.h +++ b/include/vlc/libvlc_structures.h @@ -161,7 +161,7 @@ typedef struct } volume_changed; struct { - uint64_t new_position; + vlc_int64_t new_position; } input_position_changed; } u; } libvlc_event_t;