Fix missing ' ' around '='

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@383753 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kinsey Moore
2013-03-25 20:07:00 +00:00
parent c2ae4acb15
commit 4227863d9a

View File

@@ -472,7 +472,7 @@ static void topic_pool_dtor(void *obj)
static int topic_pool_entry_hash(const void *obj, const int flags) static int topic_pool_entry_hash(const void *obj, const int flags)
{ {
const char *topic_name= (flags & OBJ_KEY) ? obj : stasis_topic_name(((struct topic_pool_entry*) obj)->topic); const char *topic_name = (flags & OBJ_KEY) ? obj : stasis_topic_name(((struct topic_pool_entry*) obj)->topic);
return ast_str_case_hash(topic_name); return ast_str_case_hash(topic_name);
} }