diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-03 10:10:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-03 10:10:45 -0700 |
commit | 6da4016aea2dc5bf311fea160bd8ef96ca82b999 (patch) | |
tree | 24f35b804286e5d0b86df471f5c48b339507f221 /epoch.c | |
parent | 44c9e8594e7854fcead68ae0959e00137c2bbb59 (diff) | |
download | git-6da4016aea2dc5bf311fea160bd8ef96ca82b999.tar.gz |
Fix sparse warnings.
Mainly making a lot of local functions and variables be marked "static",
but there was a "zero as NULL" warning in there too.
Diffstat (limited to 'epoch.c')
-rw-r--r-- | epoch.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -28,7 +28,7 @@ static BN_CTX *context = NULL; static struct fraction *one = NULL; static struct fraction *zero = NULL; -static BN_CTX *get_BN_CTX() +static BN_CTX *get_BN_CTX(void) { if (!context) { context = BN_CTX_new(); @@ -36,7 +36,7 @@ static BN_CTX *get_BN_CTX() return context; } -static struct fraction *new_zero() +static struct fraction *new_zero(void) { struct fraction *result = xmalloc(sizeof(*result)); BN_init(&result->numerator); @@ -75,7 +75,7 @@ static struct fraction *init_fraction(struct fraction *fraction) return fraction; } -static struct fraction *get_one() +static struct fraction *get_one(void) { if (!one) { one = new_zero(); @@ -84,7 +84,7 @@ static struct fraction *get_one() return one; } -static struct fraction *get_zero() +static struct fraction *get_zero(void) { if (!zero) { zero = new_zero(); |