Skip to content
Snippets Groups Projects
Commit ec33742d authored by Yang Tse's avatar Yang Tse
Browse files

compiler warning: fix

Fix compiler warning: external definition with no prior declaration
parent 2ea31b0e
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@
#include "llist.h"
struct curl_llist *llist;
static struct curl_llist *llist;
static void test_curl_llist_dtor(void *key, void *value)
{
......
......@@ -23,9 +23,9 @@
#include "netrc.h"
char login[LOGINSIZE];
char password[PASSWORDSIZE];
char filename[64];
static char login[LOGINSIZE];
static char password[PASSWORDSIZE];
static char filename[64];
static CURLcode unit_setup(void)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment