From: Emilio G. Cota Date: Mon, 27 Apr 2015 16:45:33 +0000 (-0400) Subject: linux-user/elfload: use QTAILQ_FOREACH instead of open-coding it X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=52a53afebd2604af957d50fd4f3ce2012350a40d;p=qemu.git linux-user/elfload: use QTAILQ_FOREACH instead of open-coding it Signed-off-by: Emilio G. Cota Signed-off-by: Michael Tokarev --- diff --git a/linux-user/elfload.c b/linux-user/elfload.c index 399c021337..0ba97062b7 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -2887,8 +2887,7 @@ static int write_note_info(struct elf_note_info *info, int fd) return (error); /* write prstatus for each thread */ - for (ets = info->thread_list.tqh_first; ets != NULL; - ets = ets->ets_link.tqe_next) { + QTAILQ_FOREACH(ets, &info->thread_list, ets_link) { if ((error = write_note(&ets->notes[0], fd)) != 0) return (error); }