We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 024a11a commit 473f2abCopy full SHA for 473f2ab
samples/d2html.d
@@ -177,8 +177,8 @@ int main(string[] args)
177
src.read(c);
178
179
while (ishexdigit(c)) {
180
- dst.write(c);
181
- src.read(c);
+ dst.write(c);
+ src.read(c);
182
}
183
184
// TODO: add support for hexadecimal floats
@@ -189,8 +189,8 @@ int main(string[] args)
189
190
191
while (c == '0' || c == '1') {
192
193
194
195
196
else // octal
samples/Makefile renamed to samples/posix.mak
@@ -105,4 +105,4 @@ wc: wc.o
105
$(LINK) $(LFLAGS) $< -of$@
106
107
winsamp: winsamp.o
108
- $(LINK) $(LFLAGS) $< -of$@
+ $(LINK) $(LFLAGS) $< -of$@
0 commit comments