mirror of
https://github.com/curl/curl.git
synced 2025-01-18 14:04:30 +08:00
compiler warning: fix
Fix compiler warning: external definition with no prior declaration
This commit is contained in:
parent
2ea31b0e6f
commit
ec33742d1b
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#include "llist.h"
|
#include "llist.h"
|
||||||
|
|
||||||
struct curl_llist *llist;
|
static struct curl_llist *llist;
|
||||||
|
|
||||||
static void test_curl_llist_dtor(void *key, void *value)
|
static void test_curl_llist_dtor(void *key, void *value)
|
||||||
{
|
{
|
||||||
|
@ -23,9 +23,9 @@
|
|||||||
|
|
||||||
#include "netrc.h"
|
#include "netrc.h"
|
||||||
|
|
||||||
char login[LOGINSIZE];
|
static char login[LOGINSIZE];
|
||||||
char password[PASSWORDSIZE];
|
static char password[PASSWORDSIZE];
|
||||||
char filename[64];
|
static char filename[64];
|
||||||
|
|
||||||
static CURLcode unit_setup(void)
|
static CURLcode unit_setup(void)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user