From: Michael J. Rubinsky Date: Wed, 28 Apr 2010 23:10:52 +0000 (-0400) Subject: fix sprintf type specifier X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7f17d7198bffb8ba2847121f7cb15b1d31779b57;p=horde.git fix sprintf type specifier --- diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/State/History.php b/framework/ActiveSync/lib/Horde/ActiveSync/State/History.php index 867443f0a..bda48feb4 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/State/History.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/State/History.php @@ -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))); } } }