summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-06-17 00:55:58 +0200
committerCarl Hetherington <cth@carlh.net>2020-06-17 00:55:58 +0200
commit805d7c718cf5d0c833cec9e38b2061bea6a649d2 (patch)
treea5b6e56130bed438c3685223349fd28be6324376 /src
parent4584924f8d6d803d58cbd64c36f6f82ca20ff0d0 (diff)
Clean up strange use of c_str().
Diffstat (limited to 'src')
-rw-r--r--src/mxf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mxf.cc b/src/mxf.cc
index 1b4668a8..512da844 100644
--- a/src/mxf.cc
+++ b/src/mxf.cc
@@ -77,7 +77,7 @@ MXF::fill_writer_info (ASDCP::WriterInfo* writer_info, string id) const
{
writer_info->ProductVersion = _metadata.product_version;
writer_info->CompanyName = _metadata.company_name;
- writer_info->ProductName = _metadata.product_name.c_str();
+ writer_info->ProductName = _metadata.product_name;
DCP_ASSERT (_standard);
if (_standard == INTEROP) {