Skip to content

Commit

Permalink
Fixed missing default in case, which the compilier did not like
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Crane authored and Joel Crane committed Jun 5, 2023
1 parent a9cd70b commit c9809a8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Packet_Potato/string_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,8 @@ byte getFrameType(wifi_promiscuous_pkt_type_t type)

case WIFI_PKT_DATA:
return 2;

default:
return 0;
}
}

0 comments on commit c9809a8

Please sign in to comment.