diff options
author | Rob Austein <sra@hactrn.net> | 2011-05-17 20:31:03 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-05-17 20:31:03 +0000 |
commit | 41a17c2303426d3d03e3490bbec404e6e3d4a5d8 (patch) | |
tree | a04d6eee8a155711bb96b91088940dc9c8e61f1d /rpkid/ext/POW.c | |
parent | 67586ac2ad5360973efe9ab10d3ac346eb666446 (diff) |
Missing "static"
svn path=/rpkid/ext/POW.c; revision=3815
Diffstat (limited to 'rpkid/ext/POW.c')
-rw-r--r-- | rpkid/ext/POW.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/ext/POW.c b/rpkid/ext/POW.c index 666a8919..5584e874 100644 --- a/rpkid/ext/POW.c +++ b/rpkid/ext/POW.c @@ -3504,7 +3504,7 @@ static PyTypeObject x509_crltype = { /*========== x509 crl Code ==========*/ /*========== revoked Code ==========*/ -x509_revoked_object* x509_revoked_object_new(void) +static x509_revoked_object* x509_revoked_object_new(void) { x509_revoked_object *self = NULL; |