Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 6885
b: refs/heads/master
c: c196eff
h: refs/heads/master
i:
  6883: 8fff960
v: v3
  • Loading branch information
Egry Gabor authored and Linus Torvalds committed Sep 5, 2005
1 parent ac063e4 commit ddd99a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c07e02db76940c75fc92f2f2c9adcdbb09ed70d0
refs/heads/master: c196eff3060270f155343b63ef3d06f31ccfcd2e
9 changes: 5 additions & 4 deletions trunk/scripts/kconfig/kxgettext.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,17 +179,18 @@ static void message__print_file_lineno(struct message *self)
{
struct file_line *fl = self->files;

printf("\n#: %s:%d", fl->file, fl->lineno);
putchar('\n');
if (self->option != NULL)
printf("# %s:00000\n", self->option);

printf("#: %s:%d", fl->file, fl->lineno);
fl = fl->next;

while (fl != NULL) {
printf(", %s:%d", fl->file, fl->lineno);
fl = fl->next;
}

if (self->option != NULL)
printf(", %s:00000", self->option);

putchar('\n');
}

Expand Down

0 comments on commit ddd99a0

Please sign in to comment.