Index: includes/actions.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/actions.inc,v
retrieving revision 1.10
diff -u -p -r1.10 actions.inc
--- includes/actions.inc	14 Apr 2008 17:48:33 -0000	1.10
+++ includes/actions.inc	22 Apr 2008 21:31:58 -0000
@@ -41,7 +41,7 @@ function actions_do($action_ids, $object
   static $stack;
   $stack++;
   if ($stack > variable_get('actions_max_stack', 35)) {
-    watchdog('actions', 'Stack overflow: too many calls to actions_do(). Aborting to prevent infinite recursion.', WATCHDOG_ERROR);
+    watchdog('actions', 'Stack overflow: too many calls to actions_do(). Aborting to prevent infinite recursion.', array(), WATCHDOG_ERROR);
     return;
   }
   $actions = array();
Index: modules/comment/comment.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.admin.inc,v
retrieving revision 1.6
diff -u -p -r1.6 comment.admin.inc
--- modules/comment/comment.admin.inc	14 Apr 2008 17:48:36 -0000	1.6
+++ modules/comment/comment.admin.inc	22 Apr 2008 21:31:59 -0000
@@ -277,7 +277,7 @@ function comment_confirm_delete_submit($
  */
 function _comment_delete_thread($comment) {
   if (!is_object($comment) || !is_numeric($comment->cid)) {
-    watchdog('content', 'Cannot delete non-existent comment.', WATCHDOG_WARNING);
+    watchdog('content', 'Cannot delete non-existent comment.', array(), WATCHDOG_WARNING);
     return;
   }
 
