Skip to content

Commit 473f2ab

Browse files
committed
Renamed Makefile to posix.mak and fixed indent according to CR
1 parent 024a11a commit 473f2ab

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

samples/d2html.d

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ int main(string[] args)
177177
src.read(c);
178178

179179
while (ishexdigit(c)) {
180-
dst.write(c);
181-
src.read(c);
180+
dst.write(c);
181+
src.read(c);
182182
}
183183

184184
// TODO: add support for hexadecimal floats
@@ -189,8 +189,8 @@ int main(string[] args)
189189
src.read(c);
190190

191191
while (c == '0' || c == '1') {
192-
dst.write(c);
193-
src.read(c);
192+
dst.write(c);
193+
src.read(c);
194194
}
195195
}
196196
else // octal

samples/Makefile renamed to samples/posix.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ wc: wc.o
105105
$(LINK) $(LFLAGS) $< -of$@
106106

107107
winsamp: winsamp.o
108-
$(LINK) $(LFLAGS) $< -of$@
108+
$(LINK) $(LFLAGS) $< -of$@

0 commit comments

Comments
 (0)