mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
dtappbuilder: replace accidental %a with %% in write_func_as_strings()
This commit is contained in:
parent
07e84caf74
commit
6bc5c658b8
1 changed files with 2 additions and 2 deletions
|
@ -235,8 +235,8 @@ write_func_as_strings(FILE *file, FileFuncInfo funcInfo)
|
|||
{
|
||||
funcNamePtr += 4;
|
||||
}
|
||||
sprintf(recVarName, "%abmfP_lrc_%s", funcNamePtr);
|
||||
sprintf(ptrVarName, "%abmfP_lib_%s", funcNamePtr);
|
||||
sprintf(recVarName, "%%abmfP_lrc_%s", funcNamePtr);
|
||||
sprintf(ptrVarName, "%%abmfP_lib_%s", funcNamePtr);
|
||||
|
||||
abio_puts(file, "\n");
|
||||
abio_puts(file, "/*\n");
|
||||
|
|
Loading…
Reference in a new issue