diff --git a/wp-includes/default-embeds.php b/wp-includes/default-embeds.php
index 1283c1e2ec..ca599445a5 100644
--- a/wp-includes/default-embeds.php
+++ b/wp-includes/default-embeds.php
@@ -28,7 +28,7 @@ function wp_embed_handler_googlevideo( $matches, $attr, $url, $rawattr ) {
list( $width, $height ) = wp_expand_dimensions( 425, 344, $attr['width'], $attr['height'] );
}
- return apply_filters( 'embed_googlevideo', '', $matches, $attr, $url, $rawattr );
+ return apply_filters( 'embed_googlevideo', '', $matches, $attr, $url, $rawattr );
}
wp_embed_register_handler( 'googlevideo', '#http://video\.google\.([A-Za-z.]{2,5})/videoplay\?docid=([\d-]+)(.*?)#i', 'wp_embed_handler_googlevideo' );