Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2075

Show
Ignore:
Timestamp:
04/19/07 03:14:48 (2 years ago)
Author:
sean
Message:

Minor fix for toNullEndedBuffer to get this module to compile.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/sys/Process.d

    r2073 r2075  
    12561256            foreach (key, value; src) 
    12571257            { 
    1258                 (((dest ~= key) ~= '=') ~= value) ~ '\0'; 
     1258                dest ~= key ~ '=' ~ value ~ '\0'; 
    12591259            } 
    12601260