Ver código fonte

Pacify C compiler

This eliminates a warning about a missing return
statement. The code was correct though, because
hex2num() is guarded by is_hexdigit().
tags/1.0
Timo Röhling 11 anos atrás
pai
commit
37c6dc7b0d
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1
    0
      postsrsd.c

+ 1
- 0
postsrsd.c Ver arquivo

@@ -85,6 +85,7 @@ static char hex2num (char c)
85 85
   if (c >= '0' && c <= '9') return c - '0';
86 86
   if (c >= 'a' && c <= 'f') return c - 'a' + 10;
87 87
   if (c >= 'A' && c <= 'F') return c - 'A' + 10;
88
+  return 0;
88 89
 }
89 90
 
90 91
 static char num2hex (char c)

Carregando…
Cancelar
Salvar