Skip to content

Commit 0afcbaa

Browse files
committed
store packetlog with correct file ending
1 parent 5136418 commit 0afcbaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Software/PC_Application/LibreVNA-GUI/Device/LibreVNA/devicepacketlogview.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ DevicePacketLogView::DevicePacketLogView(QWidget *parent) :
3333
// aborted selection
3434
return;
3535
}
36-
if(!filename.endsWith(".usblog")) {
37-
filename.append(".usblog");
36+
if(!filename.endsWith(".vnalog")) {
37+
filename.append(".vnalog");
3838
}
3939
ofstream file;
4040
file.open(filename.toStdString());

0 commit comments

Comments
 (0)