diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-15 17:57:10 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-22 07:52:42 +0200 |
commit | 198ab077a14511e0af5f430f89ff2b1abacb1fd6 (patch) | |
tree | 4e7bc10e93e8f285ec852b718c0e74b12cdcbb41 | |
parent | 868a820a19ff66c370cf40573ac89738386513c3 (diff) |
libihash: fix typo
* libihash/ihash.c (hurd_ihash_add): Fix typo.
-rw-r--r-- | libihash/ihash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libihash/ihash.c b/libihash/ihash.c index 151c1a79..f20ba613 100644 --- a/libihash/ihash.c +++ b/libihash/ihash.c @@ -302,7 +302,7 @@ hurd_ihash_add (hurd_ihash_t ht, hurd_ihash_key_t key, hurd_ihash_value_t item) else ht->size <<= 1; - /* calloc() will initialize all values to _HURD_IHASH_EMPTY implicitely. */ + /* calloc() will initialize all values to _HURD_IHASH_EMPTY implicitly. */ ht->items = calloc (ht->size, sizeof (struct _hurd_ihash_item)); if (ht->items == NULL) |