]> git.sesse.net Git - vlc/blobdiff - modules/lua/meta.c
v4l2: use buffer PTS where available (fix #5474)
[vlc] / modules / lua / meta.c
index eda16bcb7bee6dcf89055effc0b467979b3ea01a..824dd866a24f5279325ccfa368e1120c1ce41b27 100644 (file)
@@ -192,7 +192,7 @@ static int read_meta( vlc_object_t *p_this, const char * psz_filename,
     int i_ret = run(p_this, psz_filename, L, "read_meta");
     lua_close( L );
 
-    // Continue even if an error occured: all "meta reader" are always run.
+    // Continue even if an error occurred: all "meta reader" are always run.
     return i_ret == VLC_SUCCESS ? VLC_EGENERIC : i_ret;
 }