Browse Source

utils: Corrected a typo in header's name definition

Corrected a typo in the BASE64_H definition that
might cause the header file to be included more than once.

Signed-off-by: Guy Eilam <guy@wizery.com>
Guy Eilam 14 years ago
parent
commit
e4ac6417c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/utils/base64.h

+ 1 - 1
src/utils/base64.h

@@ -13,7 +13,7 @@
  */
 
 #ifndef BASE64_H
-#define BASE64_h
+#define BASE64_H
 
 unsigned char * base64_encode(const unsigned char *src, size_t len,
 			      size_t *out_len);