Merge branch 'sb/branch-avoid-repeated-strbuf-release'
[gitweb.git] / sub-process.c
index ec9a51b7b1c41824fdc38a21ae09f32c41d89b01..6dde5062bef388fcdd3db10d9af19f8ffc7f7d6f 100644 (file)
@@ -6,10 +6,13 @@
 #include "pkt-line.h"
 
 int cmd2process_cmp(const void *unused_cmp_data,
-                   const struct subprocess_entry *e1,
-                   const struct subprocess_entry *e2,
+                   const void *entry,
+                   const void *entry_or_key,
                    const void *unused_keydata)
 {
+       const struct subprocess_entry *e1 = entry;
+       const struct subprocess_entry *e2 = entry_or_key;
+
        return strcmp(e1->cmd, e2->cmd);
 }