diff options
Diffstat (limited to 'debian/patches/0001-libihash-fix-typo.patch')
-rw-r--r-- | debian/patches/0001-libihash-fix-typo.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/patches/0001-libihash-fix-typo.patch b/debian/patches/0001-libihash-fix-typo.patch new file mode 100644 index 00000000..0ce59408 --- /dev/null +++ b/debian/patches/0001-libihash-fix-typo.patch @@ -0,0 +1,26 @@ +From 6748c1a767337587a723695f294edf8c567aff79 Mon Sep 17 00:00:00 2001 +From: Justus Winter <4winter@informatik.uni-hamburg.de> +Date: Thu, 15 May 2014 17:57:10 +0200 +Subject: [PATCH 01/16] libihash: fix typo + +* libihash/ihash.c (hurd_ihash_add): Fix typo. +--- + libihash/ihash.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libihash/ihash.c b/libihash/ihash.c +index 151c1a7..f20ba61 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) +-- +2.0.0.rc0 + |