Created attachment 619 [details] Fix dmd warnings produced when building with g++ There are a bunch of warnings produced when building dmd with gcc. The majority are printf format specifier vs argument type mismatches. A couple are char* vs const char* with string literal related. The attached patch allows dmd to build with no warnings with gcc 4.4.3.
Some of these date back to when gcc didn't support %p, so I used %lx instead. Time to fix them. Changeset 487