]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
fixed error in non-SOAPY compilations
authorc vw <dl1ycf@darc.de>
Fri, 23 Jul 2021 13:17:37 +0000 (15:17 +0200)
committerc vw <dl1ycf@darc.de>
Fri, 23 Jul 2021 13:17:37 +0000 (15:17 +0200)
new_menu.c

index 4da1fbf96f8b89e64246cdf420e93af35e267014..4eebec4133ae0ba8c6a85d733dad6ebee63353a7 100644 (file)
@@ -495,7 +495,10 @@ void new_menu()
     // This may help to recover from certain error conditions
     // At the moment I do not know how to do this for SOAPY
     //
-    if (protocol != SOAPYSDR_PROTOCOL) {
+#ifdef SOAPYSDR
+    if (protocol != SOAPYSDR_PROTOCOL)
+#endif
+    {
       GtkWidget *restart_b=gtk_button_new_with_label("Restart");
       g_signal_connect (restart_b, "button-press-event", G_CALLBACK(restart_cb), NULL);
       gtk_grid_attach(GTK_GRID(grid),restart_b,2,0,2,1);