Lua: Fix error message in Dumper:dump()

Change-Id: I9cdf8ecaf5129a30091b9b4d109f70cfdd7fca1b
Reviewed-on: https://code.wireshark.org/review/22946
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
This commit is contained in:
Stig Bjørlykke 2017-08-05 12:29:33 +02:00
parent 7dbc022b37
commit 4b4ce9fb35
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ WSLUA_METHOD Dumper_dump(lua_State* L) {
ph = checkPseudoHeader(L,WSLUA_ARG_Dumper_dump_PSEUDOHEADER);
if (!ph) {
WSLUA_ARG_ERROR(Dumper_dump,TIMESTAMP,"need a PseudoHeader");
WSLUA_ARG_ERROR(Dumper_dump,PSEUDOHEADER,"need a PseudoHeader");
return 0;
}