Skip to content

Commit

Permalink
Initialize
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Feb 4, 2025
1 parent dfd9340 commit bac70a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mged/primitives/eddsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ ecmd_dsp_fname(struct rt_solid_edit *s)
{
struct rt_dsp_internal *dsp =
(struct rt_dsp_internal *)s->es_int.idb_ptr;
const char *fname;
const char *fname = NULL;
struct stat stat_buf;
b_off_t need_size;
bu_clbk_t f = NULL;
Expand All @@ -212,7 +212,7 @@ ecmd_dsp_fname(struct rt_solid_edit *s)
if (f)
(*f)(1, (const char **)av, d, &fname);

if (! fname)
if (!fname)
return BRLCAD_OK;

if (stat(fname, &stat_buf)) {
Expand Down

0 comments on commit bac70a6

Please sign in to comment.