diff --git a/NEWS b/NEWS index 0c8fa89972e..662c4977855 100644 --- a/NEWS +++ b/NEWS @@ -23,10 +23,6 @@ processing high level assemblies in BRL-CAD's example geometry files: % success, old: 88.9% (249 of 280) Time elapsed: 7256 seconds % success, new: 98.9% (277 of 280) Time elapsed: 1044 seconds -Also in this release is an alpha version of the new "gist" tool, which -leverages the OpenCV library to create one page summaries of the -geometric information present in .g files. - * add 'brep dump' subcommand to write out brep objects - Cliff Yapp * improve 'x' default behavior in MGED - Chris McGregor * fixed 'edcolor' and 'color -e' on Windows - Chris McGregor diff --git a/src/gtools/gist/InformationGatherer.cpp b/src/gtools/gist/InformationGatherer.cpp index 226ade681f7..cfbc5044fa6 100644 --- a/src/gtools/gist/InformationGatherer.cpp +++ b/src/gtools/gist/InformationGatherer.cpp @@ -622,7 +622,7 @@ InformationGatherer::gatherInformation(std::string name) DomainName = (LPTSTR)GlobalAlloc(GMEM_FIXED, dwDomainName * sizeof(wchar_t)); if (DomainName == NULL) { worked = false; - } eelse { + } else { bRtnBool = LookupAccountSid(NULL, pSidOwner, AcctName, (LPDWORD)&dwAcctName, DomainName, (LPDWORD)&dwDomainName, &eUse); if (bRtnBool == FALSE) { worked = false;