Skip to content

Commit

Permalink
Fixed a couple errors.
Browse files Browse the repository at this point in the history
`extra ';' outside of a function [-Werror,-Wextra-semi]`
`error: no newline at end of file [-Werror,-Wnewline-eof]`
  • Loading branch information
jonathanmarvens committed Jun 22, 2016
1 parent 381bf80 commit a55075c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

// pointer hash

KHASH_MAP_INIT_STR(ptr, void *);
KHASH_MAP_INIT_STR(ptr, void *)

/*
* Hash type.
Expand Down Expand Up @@ -103,4 +103,4 @@ hash_del(hash_t *self, char *key);
void
hash_clear(hash_t *self);

#endif /* HASH */
#endif /* HASH */

0 comments on commit a55075c

Please sign in to comment.