Browse Source

Addedsemicolon for clang

Keith Poole 7 years ago
parent
commit
166e4380b4
1 changed files with 1 additions and 1 deletions
  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;