Skip to content
Snippets Groups Projects
Commit 8e4b8032 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

be less verbose with loop

parent 4dc56d1d
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
int resolve_add_cdb(cdbmaker *c, char const *key, char const *data) int resolve_add_cdb(cdbmaker *c, char const *key, char const *data)
{ {
log_flow() ;
size_t klen = strlen(key) ; size_t klen = strlen(key) ;
size_t dlen = strlen(data) ; size_t dlen = strlen(data) ;
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
int resolve_add_cdb_uint(cdbmaker *c, char const *key, uint32_t data) int resolve_add_cdb_uint(cdbmaker *c, char const *key, uint32_t data)
{ {
log_flow() ;
char pack[4] ; char pack[4] ;
size_t klen = strlen(key) ; size_t klen = strlen(key) ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment