Move a "putchar('\n')" that caused an extra newline to be printed after

the protocol tree was printed.

svn path=/trunk/; revision=2586
This commit is contained in:
Guy Harris 2000-11-09 07:29:59 +00:00
parent 4b8ab0bb1a
commit 718fe2b549
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* tethereal.c
*
* $Id: tethereal.c,v 1.55 2000/11/06 09:28:42 guy Exp $
* $Id: tethereal.c,v 1.56 2000/11/09 07:29:59 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -1138,8 +1138,8 @@ wtap_dispatch_cb_print(u_char *user, const struct wtap_pkthdr *phdr, int offset,
}
}
}
putchar('\n');
}
putchar('\n');
if (print_hex) {
print_hex_data(stdout, print_args.format, buf,
fdata.cap_len, fdata.flags.encoding);