]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix typo in typo fix :)
authorRupa Schomaker <rupa@rupa.com>
Tue, 9 Mar 2010 19:00:47 +0000 (19:00 +0000)
committerRupa Schomaker <rupa@rupa.com>
Tue, 9 Mar 2010 19:00:47 +0000 (19:00 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16956 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_nibblebill/mod_nibblebill.c

index e377dac1492a906232edc258de9bd293c797afb9..dbc9dfd95a6109e9e978cf9fdc6a324b01f38046 100644 (file)
@@ -456,7 +456,7 @@ static switch_status_t do_billing(switch_core_session_t *session)
        switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "%d seconds passed since last bill time of %s\n",
                                          (int) ((ts - nibble_data->lastts) / 1000000), date);
 
-       if ((ts - nibble_data->lastts) >= 0) {nn
+       if ((ts - nibble_data->lastts) >= 0) {
                /* Convert billrate into microseconds and multiply by # of microseconds that have passed since last *successful* bill */
                billamount = ((float) atof(billrate) / 1000000 / 60) * ((ts - nibble_data->lastts)) - nibble_data->bill_adjustments;