summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2015-06-30 16:23:56 -0400
committerFrans Kaashoek <[email protected]>2015-06-30 16:23:56 -0400
commitecb40fb19d6d15a8dc77b7d90369494d1185bd33 (patch)
tree05ab416203046456ea634f55a43063fc8e50eedc
parentb67ed0902dee5bca577ac85fae5c41cdc588bfce (diff)
downloadxv6-labs-ecb40fb19d6d15a8dc77b7d90369494d1185bd33.tar.gz
xv6-labs-ecb40fb19d6d15a8dc77b7d90369494d1185bd33.tar.bz2
xv6-labs-ecb40fb19d6d15a8dc77b7d90369494d1185bd33.zip
coding style (per Jeremías Feltan <[email protected]>)
-rw-r--r--Makefile2
-rw-r--r--date.h12
2 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 01ca1ff..b4fd9a2 100644
--- a/Makefile
+++ b/Makefile
@@ -272,6 +272,6 @@ tar:
rm -rf /tmp/xv6
mkdir -p /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
diff --git a/date.h b/date.h
index dd8f4b0..94aec4b 100644
--- a/date.h
+++ b/date.h
@@ -1,8 +1,8 @@
struct rtcdate {
- uint second;
- uint minute;
- uint hour;
- uint day;
- uint month;
- uint year;
+ uint second;
+ uint minute;
+ uint hour;
+ uint day;
+ uint month;
+ uint year;
};