1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00

Bug 887: Fix the CONFIG_SMALL version of CANNOT_SAVE_COOKIES.

It had fewer parameters than the !CONFIG_SMALL version does, and this
caused compilation to fail.
This commit is contained in:
Kalle Olavi Niemitalo 2006-12-10 17:14:49 +02:00 committed by Kalle Olavi Niemitalo
parent 846a8f9a4e
commit a46afea662

View File

@ -835,7 +835,7 @@ save_cookies(struct terminal *term) {
time_t now;
#ifdef CONFIG_SMALL
# define CANNOT_SAVE_COOKIES(message)
# define CANNOT_SAVE_COOKIES(flags, message)
#else
# define CANNOT_SAVE_COOKIES(flags, message) \
do { \