Browse Source

fixed

tags/v20240302
Emil Williams 3 months ago
parent
commit
2ded3e61e7
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      bake.c

+ 1
- 4
bake.c View File

@@ -198,14 +198,11 @@ expand_size(char * buf, int argc, char ** argv) {

len = max = strlen(buf) + 1;

#define str
for (i = 0; i < len; ++i) {
if (buf[i] == '\\') {
i += 2;
continue;
} else if (strncmp())

else if (buf[i] == '$') {
} else if (buf[i] == '$') {
switch (buf[++i]) {
case '@':
max += strlen(g_filename);


Loading…
Cancel
Save