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
Aayush
purr-data
Commits
e4801210
Commit
e4801210
authored
Jul 11, 2016
by
Jonathan Wilkes
Browse files
fix bug from adding unnecessary quotes in previous commit
parent
544ff254
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/src/s_inter.c
View file @
e4801210
...
...
@@ -1416,7 +1416,7 @@ fprintf(stderr, "guidir is %s\n", guidir);
//strcat(scriptbuf, "/" PDBINDIR "pd.tk\"");
//sys_bashfilename(scriptbuf, scriptbuf);
sprintf
(
"
scriptbuf
"
,
"
\"
"
);
/* use quotes in case there are spaces */
sprintf
(
scriptbuf
,
"
\"
"
);
/* use quotes in case there are spaces */
strcat
(
scriptbuf
,
sys_libdir
->
s_name
);
strcat
(
scriptbuf
,
"/"
PDBINDIR
);
sys_bashfilename
(
scriptbuf
,
scriptbuf
);
...
...
Write
Preview
Supports
Markdown
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