I pushed this patch without the usual approval process through STATUS, because it's very trivial and concerns only one platform.
----- Original Message ----- From: iga...@apache.org To: comm...@trafficserver.apache.org Sent: Tuesday, January 15, 2013 9:10:57 PM Subject: [6/6] git commit: Fix a FreeBSD build error (invalid conversion from 'void*' to 'char*') Updated Branches: refs/heads/3.2.x c29a84fe1 -> 751a8def2 Fix a FreeBSD build error (invalid conversion from 'void*' to 'char*') Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/751a8def Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/751a8def Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/751a8def Branch: refs/heads/3.2.x Commit: 751a8def2b7bf04277e99365e2a3f1244b909c43 Parents: 5c14a3c Author: Daniel Gruno <humbed...@apache.org> Authored: Sun Sep 9 11:23:09 2012 +0200 Committer: Igor Gali�� <i.ga...@brainsware.org> Committed: Tue Jan 15 21:10:22 2013 +0100 ---------------------------------------------------------------------- lib/ts/ink_hash_table.cc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/751a8def/lib/ts/ink_hash_table.cc ---------------------------------------------------------------------- diff --git a/lib/ts/ink_hash_table.cc b/lib/ts/ink_hash_table.cc index f9aa540..b6abe96 100644 --- a/lib/ts/ink_hash_table.cc +++ b/lib/ts/ink_hash_table.cc @@ -366,7 +366,7 @@ ink_hash_table_entry_key(InkHashTable * ht_ptr, InkHashTableEntry * entry_ptr) { char *tcl_key; - tcl_key = Tcl_GetHashKey((Tcl_HashTable *) ht_ptr, (Tcl_HashEntry *) entry_ptr); + tcl_key = (char*) Tcl_GetHashKey((Tcl_HashTable *) ht_ptr, (Tcl_HashEntry *) entry_ptr); return ((InkHashTableKey) tcl_key); } /* End ink_hash_table_entry_key */ -- Igor Galić Tel: +43 (0) 664 886 22 883 Mail: i.ga...@brainsware.org URL: http://brainsware.org/ GPG: 6880 4155 74BD FD7C B515 2EA5 4B1D 9E08 A097 C9AE