alisp: Comment out an unused function to avoid compiler warnings.

The function should be useful later so keep it in place and just comment it out
until it is actually used.

Signed-off-by: Stefan Schmidt <stefan@slimlogic.co.uk>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Stefan Schmidt 2009-09-30 12:36:14 +02:00 committed by Takashi Iwai
parent 19f703a774
commit 0d81de0bca

View file

@ -233,6 +233,9 @@ static struct alisp_object * incref_tree(struct alisp_instance *instance, struct
return incref_object(instance, p);
}
/* Function not used yet. Leave it commented out until we actually use it to
* avoid compiler complaints */
#if 0
static struct alisp_object * incref_tree_explicit(struct alisp_instance *instance, struct alisp_object * p, struct alisp_object * e)
{
if (p == NULL)
@ -250,6 +253,7 @@ static struct alisp_object * incref_tree_explicit(struct alisp_instance *instanc
return incref_object(instance, p);
return p;
}
#endif
static void free_objects(struct alisp_instance *instance)
{