Skip to content

Commit bac70a6

Browse files
committed
Initialize
1 parent dfd9340 commit bac70a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mged/primitives/eddsp.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ ecmd_dsp_fname(struct rt_solid_edit *s)
198198
{
199199
struct rt_dsp_internal *dsp =
200200
(struct rt_dsp_internal *)s->es_int.idb_ptr;
201-
const char *fname;
201+
const char *fname = NULL;
202202
struct stat stat_buf;
203203
b_off_t need_size;
204204
bu_clbk_t f = NULL;
@@ -212,7 +212,7 @@ ecmd_dsp_fname(struct rt_solid_edit *s)
212212
if (f)
213213
(*f)(1, (const char **)av, d, &fname);
214214

215-
if (! fname)
215+
if (!fname)
216216
return BRLCAD_OK;
217217

218218
if (stat(fname, &stat_buf)) {

0 commit comments

Comments
 (0)