Magic glib macro usage to ensure constants are passed properly to vararg functions.

Original commit message from CVS:
Magic glib macro usage to ensure constants are passed properly to vararg
functions.
This commit is contained in:
Michael Smith 2005-10-13 12:09:56 +00:00
parent bd3cff086d
commit e3b8cd9265
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2005-10-13 Michael Smith <msmith@fluendo.com>
* ext/ogg/gstoggmux.c:
Use magic glib macros to define constants as 64 bit, to ensure
appropriate vararg passing.
2005-10-13 Michael Smith <msmith@fluendo.com>
* ext/ogg/gstoggmux.c:

View file

@ -131,8 +131,8 @@ enum
};
/* set to 0.5 seconds by default */
#define DEFAULT_MAX_DELAY 500000000
#define DEFAULT_MAX_PAGE_DELAY 500000000
#define DEFAULT_MAX_DELAY G_GINT64_CONSTANT(500000000)
#define DEFAULT_MAX_PAGE_DELAY G_GINT64_CONSTANT(500000000)
enum
{
ARG_0,