From 7f17d7198bffb8ba2847121f7cb15b1d31779b57 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Wed, 28 Apr 2010 19:10:52 -0400 Subject: [PATCH] fix sprintf type specifier --- framework/ActiveSync/lib/Horde/ActiveSync/State/History.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))); } } } -- 2.11.0