coding style (per Jeremías Feltan <jeremias.feltan@gmail.com>)
This commit is contained in:
parent
b67ed0902d
commit
ecb40fb19d
2 changed files with 7 additions and 7 deletions
2
Makefile
2
Makefile
|
@ -272,6 +272,6 @@ tar:
|
||||||
rm -rf /tmp/xv6
|
rm -rf /tmp/xv6
|
||||||
mkdir -p /tmp/xv6
|
mkdir -p /tmp/xv6
|
||||||
cp dist/* dist/.gdbinit.tmpl /tmp/xv6
|
cp dist/* dist/.gdbinit.tmpl /tmp/xv6
|
||||||
(cd /tmp; tar cf - xv6) | gzip >xv6-rev5.tar.gz
|
(cd /tmp; tar cf - xv6) | gzip >xv6-rev9.tar.gz # the next one will be 9 (6/27/15)
|
||||||
|
|
||||||
.PHONY: dist-test dist
|
.PHONY: dist-test dist
|
||||||
|
|
12
date.h
12
date.h
|
@ -1,8 +1,8 @@
|
||||||
struct rtcdate {
|
struct rtcdate {
|
||||||
uint second;
|
uint second;
|
||||||
uint minute;
|
uint minute;
|
||||||
uint hour;
|
uint hour;
|
||||||
uint day;
|
uint day;
|
||||||
uint month;
|
uint month;
|
||||||
uint year;
|
uint year;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue