summaryrefslogtreecommitdiff
path: root/modules/watchdog
diff options
context:
space:
mode:
Diffstat (limited to 'modules/watchdog')
-rw-r--r--modules/watchdog/watchdog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module
index 71f353d7f..0f620b2cc 100644
--- a/modules/watchdog/watchdog.module
+++ b/modules/watchdog/watchdog.module
@@ -66,7 +66,7 @@ function watchdog_cron() {
*/
function watchdog_user($op, &$edit, &$user) {
if ($op == 'delete') {
- db_query('UPDATE {watchdog} SET uid=0 WHERE uid=%d', $user->uid);
+ db_query('UPDATE {watchdog} SET uid = 0 WHERE uid = %d', $user->uid);
}
}