1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Fixed warning.

llvm-svn: 8505
This commit is contained in:
Tanya Lattner 2003-09-13 03:18:56 +00:00
parent c0c084e44a
commit 6744cea856

View File

@ -112,7 +112,7 @@ bool WriteSymbolTable(std::ofstream &ArchiveFile) {
//Name of symbol table is '/'
Hdr.name[0] = '/';
Hdr.name[1] = '/0';
Hdr.name[1] = '\0';
//Set the header trailer to a newline
memcpy(Hdr.fmag,ARFMAG,sizeof(ARFMAG));