diff options
| author | Ezra Peisach <epeisach@mit.edu> | 2009-12-31 22:49:52 +0000 |
|---|---|---|
| committer | Ezra Peisach <epeisach@mit.edu> | 2009-12-31 22:49:52 +0000 |
| commit | b3ded17a5edf5a67c785334b5330df718eaa4020 (patch) | |
| tree | 6e4cdd733bb8ad7deacd068292bdde0ab31b8e07 /src | |
| parent | f7f2689b66dc374921ca41008aee3b194cb924f4 (diff) | |
| download | krb5-b3ded17a5edf5a67c785334b5330df718eaa4020.tar.gz krb5-b3ded17a5edf5a67c785334b5330df718eaa4020.tar.xz krb5-b3ded17a5edf5a67c785334b5330df718eaa4020.zip | |
Declare function as static to avoid compiler warning on missing prototypes
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23557 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/crypto/crypto_tests/t_cts.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/crypto/crypto_tests/t_cts.c b/src/lib/crypto/crypto_tests/t_cts.c index 9b1c27150..9f7b5e7e0 100644 --- a/src/lib/crypto/crypto_tests/t_cts.c +++ b/src/lib/crypto/crypto_tests/t_cts.c @@ -67,7 +67,8 @@ keyToData (krb5_keyblock *k, krb5_data *d) d->data = k->contents; } -void check_error (int r, int line) { +static void +check_error (int r, int line) { if (r != 0) { fprintf (stderr, "%s:%d: %s\n", __FILE__, line, error_message (r)); |
