From: Andre Date: Fri, 10 Mar 2006 21:47:16 +0000 (+0100) Subject: kill a macro which is only used once. X-Git-Tag: v0.2.11~6 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=320ec19419f56402f7dbc96aa1e9b7258df8358a;ds=sidebyside kill a macro which is only used once. Insert the text directly instead. --- diff --git a/random_selector.c b/random_selector.c index 0dca1727..bdb82682 100644 --- a/random_selector.c +++ b/random_selector.c @@ -124,9 +124,6 @@ static void random_shutdown(void) { } -/** random's (constant) database info text */ -#define DBINFO "dbinfo1:database info? You're kidding. I'm still dopey!\ndbinfo2:\ndbinfo3:\n" - /** * the init function for the random audio file selector * @@ -140,7 +137,8 @@ int random_selector_init(struct audio_file_selector *db) struct timeval now; PARA_INFO_LOG("%s", "registering random handlers ;)\n"); - sprintf(mmd->selector_info, DBINFO); + sprintf(mmd->selector_info, "dbinfo1:database info? You're kidding. " + "I'm still dopey!\ndbinfo2:\ndbinfo3:\n"); gettimeofday(&now, NULL); srand(now.tv_usec); db->cmd_list = cmds;