[asterisk-commits] russell: branch group/newcdr r201328 - /team/group/newcdr/main/cel.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jun 17 09:33:06 CDT 2009
Author: russell
Date: Wed Jun 17 09:33:03 2009
New Revision: 201328
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=201328
Log:
remove trailing whitespace
Modified:
team/group/newcdr/main/cel.c
Modified: team/group/newcdr/main/cel.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/newcdr/main/cel.c?view=diff&rev=201328&r1=201327&r2=201328
==============================================================================
--- team/group/newcdr/main/cel.c (original)
+++ team/group/newcdr/main/cel.c Wed Jun 17 09:33:03 2009
@@ -14,10 +14,10 @@
* at the top of the source tree.
*/
-/*!
+/*!
* \file
*
- * \brief Channel Event Logging API
+ * \brief Channel Event Logging API
*
* \author Steve Murphy <murf at digium.com>
*/
@@ -259,7 +259,7 @@
/* form a hash table */
appset = ast_hashtab_create(commacount+1, ast_hashtab_compare_strings_nocase,
ast_hashtab_resize_none,
- ast_hashtab_newsize_none,
+ ast_hashtab_newsize_none,
ast_hashtab_hash_string_nocase,1);
while (t1 && *t1) {
t2 = strchr(t1,',');
@@ -272,7 +272,7 @@
/*push t1 to the first non-blank char */
while (t1 && *t1 && isspace(*t1)) {
t1++;
- }
+ }
if (t2 == t1) {
ast_log(LOG_ERROR, "A comma with no preceeding event name? --Ignored\n");
t1 = t2+1;
@@ -294,9 +294,9 @@
*(t3+1) = 0;
/* t1 now points to null-terminated entry */
/* while just a few apps would be OK to put in a linked list,
- If there are dozens, a linked list search would be really
+ If there are dozens, a linked list search would be really
horribly slow and therefore bad.
- So, let's put these in a hash table
+ So, let's put these in a hash table
*/
t3 = strdup(t1);
if (!ast_hashtab_insert_safe(appset, t3)) {
More information about the asterisk-commits
mailing list