diff --git a/feeds.module b/feeds.module
index 8297dde53da991d2b15751b809d0c64b52c8e6a6..01524cffada827005edd7771cdc95a7d5cd3fb7a 100644
--- a/feeds.module
+++ b/feeds.module
@@ -362,16 +362,16 @@ function feeds_form_alter(&$form, $form_state, $form_id) {
 }
 
 /**
- * Refreshes a feed identified by $feed_info.
+ * Refreshes a feed identified by $job.
  *
  * Used as a worker callback for drupal_queue.
  *
- * @param $feed_info
+ * @param $job
  *   Array where the key 'id' is the id of a FeedsImporter object and the key
  *   'feed_nid' is the node id of feed node.
  */
-function feeds_scheduler_work($feed_info) {
-  feeds_scheduler()->work($feed_info);
+function feeds_scheduler_work($job) {
+  feeds_scheduler()->work($job);
 }
 
 /**