]> source.dussan.org Git - tigervnc.git/commitdiff
Bugfix:
authorPeter Åstrand <astrand@cendio.se>
Wed, 10 Dec 2008 12:11:10 +0000 (12:11 +0000)
committerPeter Åstrand <astrand@cendio.se>
Wed, 10 Dec 2008 12:11:10 +0000 (12:11 +0000)
RegConfig.cxx:64: warning: cannot pass objects of non-POD type `struct
rfb::CStr' through `...'; call will abort at runtime

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3361 3789f03b-4d11-0410-bbf8-ca57d06f2519

win/rfb_win32/RegConfig.cxx

index ff944518d4855dd6743858c25e43a575969224fc..90980c33b31b5b66d3d18cae85d6f7c2dee8fe76 100644 (file)
@@ -61,7 +61,7 @@ void RegConfig::loadRegistryConfig(RegKey& key) {
       if (!name.buf) break;
       TCharArray value(key.getRepresentation(name.buf));
       if (!value.buf || !Configuration::setParam(CStr(name.buf), CStr(value.buf)))
-        vlog.info("unable to process %s", CStr(name.buf));
+        vlog.info("unable to process %s", name.buf);
     }
   } catch (rdr::SystemException& e) {
     if (e.err != 6)