lscpu: remove comma operator

Fix typo where the comma operator has been introduced.
Use a semicolon instead so we end up with simple assignment expressions.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
This commit is contained in:
Heiko Carstens 2011-09-06 02:52:52 +02:00 committed by Karel Zak
parent bb6f91636c
commit c403ae6a1a
1 changed files with 2 additions and 2 deletions

View File

@ -1218,8 +1218,8 @@ int main(int argc, char *argv[])
} else {
columns[ncolumns++] = COL_CPU;
columns[ncolumns++] = COL_CORE;
columns[ncolumns++] = COL_SOCKET,
columns[ncolumns++] = COL_NODE,
columns[ncolumns++] = COL_SOCKET;
columns[ncolumns++] = COL_NODE;
columns[ncolumns++] = COL_CACHE;
compatible = 1;
}