diff options
author | Pixel <pixel@nobis-crew.org> | 2009-10-21 09:54:49 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-10-21 09:54:49 -0700 |
commit | 91e1b2a0b50088e3a5d556eabfd7c25b689edd07 (patch) | |
tree | 1f69bc2cbe9c2cbc73eddd973956271978103451 /lib/cdutils.cpp | |
parent | 78bc26257579e19892454e7ed81832d2388e28ee (diff) |
Fixing one missing const.
Diffstat (limited to 'lib/cdutils.cpp')
-rw-r--r-- | lib/cdutils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |