summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/input/vcd/libvcd/info.c6
-rw-r--r--src/input/vcd/libvcd/libvcd/info.h2
-rw-r--r--src/input/vcd/libvcd/version.h11
3 files changed, 4 insertions, 15 deletions
diff --git a/src/input/vcd/libvcd/info.c b/src/input/vcd/libvcd/info.c
index accd3e77f..c18444676 100644
--- a/src/input/vcd/libvcd/info.c
+++ b/src/input/vcd/libvcd/info.c
@@ -1,5 +1,5 @@
/*
- $Id: info.c,v 1.3 2005/01/01 02:43:59 rockyb Exp $
+ $Id: info.c,v 1.4 2005/06/14 17:17:45 rockyb Exp $
Copyright (C) 2002, 2003, 2004 Rocky Bernstein <rocky@panix.com>
@@ -59,7 +59,7 @@
#include <stddef.h>
#include <errno.h>
-static const char _rcsid[] = "$Id: info.c,v 1.3 2005/01/01 02:43:59 rockyb Exp $";
+static const char _rcsid[] = "$Id: info.c,v 1.4 2005/06/14 17:17:45 rockyb Exp $";
#define BUF_COUNT 16
#define BUF_SIZE 80
@@ -1040,7 +1040,7 @@ vcdinfo_get_psd_x_size (const vcdinfo_obj_t *obj)
Return a string containing the VCD publisher id with trailing
blanks removed, or NULL if there is some problem in getting this.
*/
-const char *
+char *
vcdinfo_get_publisher_id(const vcdinfo_obj_t *obj)
{
if ( NULL == obj ) return (NULL);
diff --git a/src/input/vcd/libvcd/libvcd/info.h b/src/input/vcd/libvcd/libvcd/info.h
index 82aa78272..91b25c956 100644
--- a/src/input/vcd/libvcd/libvcd/info.h
+++ b/src/input/vcd/libvcd/libvcd/info.h
@@ -482,7 +482,7 @@ extern "C" {
Return a string containing the VCD publisher id with trailing
blanks removed, or NULL if there is some problem in getting this.
*/
- const char * vcdinfo_get_publisher_id(const vcdinfo_obj_t *obj);
+ char * vcdinfo_get_publisher_id(const vcdinfo_obj_t *obj);
/**
\fn vcdinfo_get_return_offset(const vcdinfo_obj_t *obj);
diff --git a/src/input/vcd/libvcd/version.h b/src/input/vcd/libvcd/version.h
deleted file mode 100644
index d1f658c23..000000000
--- a/src/input/vcd/libvcd/version.h
+++ /dev/null
@@ -1,11 +0,0 @@
-/* $Id: version.h,v 1.1 2005/01/01 02:43:59 rockyb Exp $ */
-/** \file version.h
- * \brief A file simply containing the library version number.
- */
-
-/*! LIBVCD_VERSION can as a string in programs to show what version is used. */
-#define LIBVCD_VERSION "0.7.21-"
-
-/*! LIBCDIO_VERSION_NUM can be used for testing in the C preprocessor */
-#define LIBVCD_VERSION_NUM 21
-