mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-29 15:41:13 +03:00
Fix endTimer parameter type
This commit is contained in:
@ -287,7 +287,7 @@ static void startTimer(void)
|
|||||||
{
|
{
|
||||||
begin=clock();
|
begin=clock();
|
||||||
}
|
}
|
||||||
static void endTimer(char *format, ...)
|
static void endTimer(const char *format, ...)
|
||||||
{
|
{
|
||||||
long msec;
|
long msec;
|
||||||
va_list ap;
|
va_list ap;
|
||||||
@ -313,7 +313,7 @@ static void startTimer(void)
|
|||||||
* Do nothing
|
* Do nothing
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
static void endTimer(char *format, ...)
|
static void endTimer(const char *format, ...)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* We cannot do anything because we don't have a timing function
|
* We cannot do anything because we don't have a timing function
|
||||||
|
Reference in New Issue
Block a user