fix sprintf type specifier
authorMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 28 Apr 2010 23:10:52 +0000 (19:10 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 28 Apr 2010 23:10:52 +0000 (19:10 -0400)
framework/ActiveSync/lib/Horde/ActiveSync/State/History.php

index 867443f..bda48fe 100644 (file)
@@ -152,7 +152,7 @@ class Horde_ActiveSync_State_History extends Horde_ActiveSync_State_Base
             $changes = unserialize($results['sync_data']);
             $this->_changes = ($changes !== false) ? $changes : null;
             if ($this->_changes) {
-                $this->_logger->debug(sprintf('[%s] Found %n changes remaining from previous SYNC.', $this->_devId, count($this->_changes)));
+                $this->_logger->debug(sprintf('[%s] Found %d changes remaining from previous SYNC.', $this->_devId, count($this->_changes)));
             }
         }
     }