mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Declare variables as static, like I intended.
Obtained from: Dan Markarian <markarian at apple dot com>
This commit is contained in:
parent
7d744baf22
commit
e3f8c5aa65
4 changed files with 4 additions and 4 deletions
|
|
@ -39,7 +39,7 @@ __FBSDID("$FreeBSD$");
|
|||
#include "map.h"
|
||||
#include "gpt.h"
|
||||
|
||||
int primary_only;
|
||||
static int primary_only;
|
||||
|
||||
static void
|
||||
usage_create(void)
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ __FBSDID("$FreeBSD$");
|
|||
#include "map.h"
|
||||
#include "gpt.h"
|
||||
|
||||
int recoverable;
|
||||
static int recoverable;
|
||||
|
||||
static void
|
||||
usage_destroy(void)
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ __FBSDID("$FreeBSD$");
|
|||
#define LABELSECTOR 1
|
||||
#endif
|
||||
|
||||
int keep, slice;
|
||||
static int keep, slice;
|
||||
|
||||
static void
|
||||
usage_migrate(void)
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ __FBSDID("$FreeBSD$");
|
|||
#include "map.h"
|
||||
#include "gpt.h"
|
||||
|
||||
int recoverable;
|
||||
static int recoverable;
|
||||
|
||||
static void
|
||||
usage_recover(void)
|
||||
|
|
|
|||
Loading…
Reference in a new issue