examples: Make variables static in scp example.

Fixes sparse warnings.
This commit is contained in:
Andreas Schneider 2012-02-18 12:26:23 +01:00
parent e68b763a67
commit c31004442a

View File

@ -22,10 +22,10 @@ program.
#include <libssh/libssh.h>
#include "examples_common.h"
char **sources;
int nsources;
char *destination;
int verbosity=0;
static char **sources;
static int nsources;
static char *destination;
static int verbosity=0;
struct location {
int is_ssh;