Convert spaces to tabs

This commit is contained in:
Markus Armbruster 2010-05-22 15:40:35 +02:00
parent 7465574195
commit 243a15052f
19 changed files with 100 additions and 100 deletions

View file

@ -766,9 +766,9 @@ xuheader(FILE *fp, int expected_table)
human = ch == 'c';
res = -1;
if ((human
? fscanf(fp, "config%*[ \t]%63[^ \t#\n]%n", name, &res) != 1
: fscanf(fp, "XDUMP%*[ \t]%63[^ \t#\n]%*[ \t]%*[^ \t#\n]%n",
name, &res) != 1) || res < 0)
? fscanf(fp, "config%*[ \t]%63[^ \t#\n]%n", name, &res) != 1
: fscanf(fp, "XDUMP%*[ \t]%63[^ \t#\n]%*[ \t]%*[^ \t#\n]%n",
name, &res) != 1) || res < 0)
return gripe("Expected xdump header");
type = ef_byname(name);