1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-02 12:32:54 +00:00

Remove unused function.

This commit is contained in:
Josh Elsasser 2007-03-29 19:53:40 +00:00
parent 66cb8d5835
commit b8530669e6
2 changed files with 0 additions and 19 deletions

View file

@ -293,21 +293,6 @@ addactionname( guint flag )
return name;
}
GList *
makeglist(void *ptr, ...) {
va_list ap;
GList *ret;
ret = g_list_append(NULL, ptr);
va_start(ap, ptr);
while(NULL != (ptr = va_arg(ap, void*)))
ret = g_list_append(ret, ptr);
va_end(ap);
return ret;
}
const char *
getdownloaddir( void )
{

View file

@ -121,10 +121,6 @@ addactionflag(const char *action);
const char *
addactionname(guint flag);
/* turn a NULL-terminated list of void* arguments into a glist */
GList *
makeglist(void *ptr, ...);
/* retrieve the global download directory */
const char *
getdownloaddir( void );