mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-06-15 08:01:42 +03:00
examples: Make variables static in scp example.
Fixes sparse warnings.
This commit is contained in:
@ -22,10 +22,10 @@ program.
|
|||||||
#include <libssh/libssh.h>
|
#include <libssh/libssh.h>
|
||||||
#include "examples_common.h"
|
#include "examples_common.h"
|
||||||
|
|
||||||
char **sources;
|
static char **sources;
|
||||||
int nsources;
|
static int nsources;
|
||||||
char *destination;
|
static char *destination;
|
||||||
int verbosity=0;
|
static int verbosity=0;
|
||||||
|
|
||||||
struct location {
|
struct location {
|
||||||
int is_ssh;
|
int is_ssh;
|
||||||
|
Reference in New Issue
Block a user