remove some more bad examples of using printf

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@37419 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2006-07-12 13:54:10 +00:00
parent fe1708f190
commit 648bc1828d
7 changed files with 26 additions and 103 deletions

View File

@@ -399,14 +399,6 @@ static void base64_init(void)
base64[63] = '/';
b2a[(int)'+'] = 62;
b2a[(int)'/'] = 63;
#if 0
for (x=0;x<64;x++) {
if (b2a[(int)base64[x]] != x) {
fprintf(stderr, "!!! %d failed\n", x);
} else
fprintf(stderr, "--- %d passed\n", x);
}
#endif
}
/*! \brief ast_uri_encode: Turn text string to URI-encoded %XX version ---*/