diff options
author | pixel <pixel> | 2003-10-12 05:15:00 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-10-12 05:15:00 +0000 |
commit | f70ad229bc765f3e6fd218f1e54bd0828fc9e1b4 (patch) | |
tree | a9150cfda7ed8b492254e28f3d1e4769259567ac /lib/String.cc | |
parent | 0c065d346b2555943540091651236ff802d720eb (diff) |
AT LAST!!!
Windows 2k/XP CD reading works using raw ioctls!!!!
HURRAY!!!!!!!!
Diffstat (limited to 'lib/String.cc')
-rw-r--r-- | lib/String.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/String.cc b/lib/String.cc index 75d9d15..82b0e00 100644 --- a/lib/String.cc +++ b/lib/String.cc @@ -46,9 +46,6 @@ String::String(char c) : siz(1) { } String::String(const char * s) : str(Base::strdup(s)), siz(::strlen(str)) { - if (!strcmp(s, "testing")) { - gruikptr = &str; - } #ifdef DEBUG fprintf(stderr, _("Creating a string with `%s' at %p from %p, this = %p\n"), str, str, s, this); #endif @@ -93,7 +90,7 @@ String::String(int64 l) { siz = ::strlen(str); } -String::String(uint64 l) { +String::String(Uint64 l) { #ifndef HAVE_ASPRINTF char t[40]; sprintf(t, "%llu", l); |