]> Devi Nivas Git - cs3210-lab0.git/commitdiff
coding style (per Jeremías Feltan <jeremias.feltan@gmail.com>)
authorFrans Kaashoek <kaashoek@mit.edu>
Tue, 30 Jun 2015 20:23:56 +0000 (16:23 -0400)
committerFrans Kaashoek <kaashoek@mit.edu>
Tue, 30 Jun 2015 20:23:56 +0000 (16:23 -0400)
Makefile
date.h

index 01ca1ffe41d699ab38d36ecc5b64b9bc52c14891..b4fd9a253c44befcfb841509437612ba21057fd9 100644 (file)
--- 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 dd8f4b00c57d84bf04ce3b50843c2ceb16170848..94aec4b77da8bc70f9cfaca3b201d1e132741d29 100644 (file)
--- 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;
 };