changeset 31873:dd09c62c1adf

Avoid pointless additional string pointers.
author reimar
date Tue, 10 Aug 2010 13:28:18 +0000
parents 66b846665274
children cedbffa1629d
files stream/stream_bd.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/stream/stream_bd.c	Tue Aug 10 13:26:19 2010 +0000
+++ b/stream/stream_bd.c	Tue Aug 10 13:28:18 2010 +0000
@@ -31,10 +31,10 @@
 #include "stream.h"
 
 static const int   BD_UNIT_SIZE = 6144;
-static const char *BD_UKF_PATH  = "/%s/AACS/Unit_Key_RO.inf";
-static const char *BD_M2TS_PATH = "/%s/BDMV/STREAM/%05d.m2ts";
+static const char BD_UKF_PATH[]  = "/%s/AACS/Unit_Key_RO.inf";
+static const char BD_M2TS_PATH[] = "/%s/BDMV/STREAM/%05d.m2ts";
 
-static const char *DEFAULT_BD_DEVICE = "/mnt/bd";
+static const char DEFAULT_BD_DEVICE[] = "/mnt/bd";
 
 static const struct stream_priv_s {
     int   title;