From 91e1b2a0b50088e3a5d556eabfd7c25b689edd07 Mon Sep 17 00:00:00 2001 From: Pixel Date: Wed, 21 Oct 2009 09:54:49 -0700 Subject: Fixing one missing const. --- lib/cdutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/cdutils.cpp') diff --git a/lib/cdutils.cpp b/lib/cdutils.cpp index 0b5709a..554cffb 100644 --- a/lib/cdutils.cpp +++ b/lib/cdutils.cpp @@ -97,7 +97,7 @@ Handle * cdutils::open_ppf(String ppf, String comment) throw (GeneralException) if (l >= 50) { ppf_file->write(comment.to_charp(), 50); } else { - char * t = " "; + const char * t = " "; ppf_file->write(comment.to_charp(), l); for (i = l; i < 50; i++) { ppf_file->write(t, 1); -- cgit v1.2.3