[broadway] Fix all unnecessary warnings

This commit is contained in:
Alexander Larsson
2011-04-06 22:23:35 +02:00
parent 3b1fe05e78
commit 43aac66458
5 changed files with 5 additions and 22 deletions

View File

@ -18,12 +18,14 @@
static const char base64_alphabet[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
#if 0 /* Unused for now */
static void
base64_uint8 (guint8 v, char *c)
{
c[0] = base64_alphabet[(v >> 0) & 0x3f];
c[1] = base64_alphabet[(v >> 6) & 0x3];
}
#endif
static void
base64_uint16 (guint32 v, char *c)