diff options
| author | Josh Triplett <josh@freedesktop.org> | 2007-06-26 15:26:43 -0700 |
|---|---|---|
| committer | Josh Triplett <josh@freedesktop.org> | 2007-06-26 15:26:43 -0700 |
| commit | 7a4f042c80af12bd2464a15de732aab997c30db3 (patch) | |
| tree | 851efcb2000c5d0111b1112c4affb2e2546919e6 /validation | |
| parent | 361908cf099b011f173a1ea3053f84eb8a08841e (diff) | |
| download | sparse-dev-7a4f042c80af12bd2464a15de732aab997c30db3.tar.gz | |
validation/old-initializer.c: Make the_s static to avoid extraneous warning.
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'validation')
| -rw-r--r-- | validation/old-initializer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/validation/old-initializer.c b/validation/old-initializer.c index de93820d..5ae85161 100644 --- a/validation/old-initializer.c +++ b/validation/old-initializer.c @@ -2,4 +2,4 @@ struct s { int i; }; -struct s the_s = { i: 1 }; +static struct s the_s = { i: 1 }; |
