1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Make msg_dsc[] static const.

This commit is contained in:
Kalle Olavi Niemitalo 2007-02-04 13:40:46 +02:00 committed by Kalle Olavi Niemitalo
parent 68b069a657
commit 543b0f6768

View File

@ -22,7 +22,8 @@
struct s_msg_dsc {
int n;
unsigned char *msg;
} msg_dsc[] = {
};
static const struct s_msg_dsc msg_dsc[] = {
{S_WAIT, N_("Waiting in queue")},
{S_DNS, N_("Looking up host")},
{S_CONN, N_("Making connection")},