Ver código fonte

Addedsemicolon for clang

Keith Poole 7 anos atrás
pai
commit
166e4380b4
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      sys/src/9/port/devramfs.c

+ 1 - 1
sys/src/9/port/devramfs.c

@@ -25,7 +25,7 @@ struct RamFile {
 	union {
 		uint8_t	*data;		// List of children if directory
 		struct RamFile* firstchild;
-	}
+	};
 };
 
 static struct RamFile *ramroot;