summaryrefslogtreecommitdiff
path: root/cad/boolean/patches/patch-apps_edit_src_intrface_strucdlg_cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cad/boolean/patches/patch-apps_edit_src_intrface_strucdlg_cpp')
-rw-r--r--cad/boolean/patches/patch-apps_edit_src_intrface_strucdlg_cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/cad/boolean/patches/patch-apps_edit_src_intrface_strucdlg_cpp b/cad/boolean/patches/patch-apps_edit_src_intrface_strucdlg_cpp
new file mode 100644
index 00000000000..d08276e128d
--- /dev/null
+++ b/cad/boolean/patches/patch-apps_edit_src_intrface_strucdlg_cpp
@@ -0,0 +1,24 @@
+$NetBSD: patch-apps_edit_src_intrface_strucdlg_cpp,v 1.1 2012/01/03 01:18:46 dholland Exp $
+
+Avoid undefined behvior, caught by gcc.
+
+--- apps/edit/src/intrface/strucdlg.cpp~ 2006-05-03 11:41:00.000000000 +0000
++++ apps/edit/src/intrface/strucdlg.cpp
+@@ -286,7 +286,7 @@ void StructuresDialog::CmOk(wxCommandEve
+ selectedStruct = selectedStruct.Mid( 0, top );
+ _structure = _structurelist->GetStructure(selectedStruct);
+ if (_structure)
+- GLOB->CMDH->DoCommand("viewstructure %s",selectedStruct);
++ GLOB->CMDH->DoCommand("viewstructure %s", (const char *)selectedStruct);
+ }
+
+ // OK button pressed: get the choosen structure
+@@ -299,7 +299,7 @@ void StructuresDialog::CmShow(wxCommandE
+ selectedStruct = selectedStruct.Mid( 0, top );
+ _structure = _structurelist->GetStructure(selectedStruct);
+ if (_structure)
+- GLOB->CMDH->DoCommand("viewstructure %s",selectedStruct);
++ GLOB->CMDH->DoCommand("viewstructure %s", (const char *)selectedStruct);
+ }
+
+ Structure* StructuresDialog::GetStructure()