diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/common.h | 4 | ||||
-rw-r--r-- | common/version.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/common/common.h b/common/common.h index 9e751ee851..ae2fb8f2d5 100644 --- a/common/common.h +++ b/common/common.h @@ -59,8 +59,8 @@ enum stream_type { STREAM_TYPE_COUNT, }; -extern const char *mplayer_version; -extern const char *mplayer_builddate; +extern const char *mpv_version; +extern const char *mpv_builddate; char *mp_format_time(double time, bool fractions); char *mp_format_time_fmt(const char *fmt, double time); diff --git a/common/version.c b/common/version.c index 23a0c59bc3..83177a5fc7 100644 --- a/common/version.c +++ b/common/version.c @@ -22,5 +22,5 @@ #define BUILDDATE "UNKNOWN" #endif -const char *mplayer_version = "mpv " VERSION; -const char *mplayer_builddate = BUILDDATE; +const char *mpv_version = "mpv " VERSION; +const char *mpv_builddate = BUILDDATE; |