Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ben Boeckel
Xdmf
Commits
4054253b
Commit
4054253b
authored
Apr 01, 2010
by
Kenneth Leiter
Browse files
BUG: Fix bug that prevented names of one character length from being written to xml file.
parent
ea17db1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
libsrc/XdmfElement.cxx
View file @
4054253b
...
...
@@ -456,7 +456,7 @@ XdmfInt32 XdmfElement::Build(){
XdmfInt32
i
;
name
=
this
->
GetName
();
if
(
name
&&
(
strlen
(
name
)
>
1
)){
if
(
name
&&
(
strlen
(
name
)
>
0
)){
this
->
Set
(
"Name"
,
name
);
}
if
(
this
->
DOM
){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment