diff options
Diffstat (limited to 'src/relocation.c')
-rw-r--r-- | src/relocation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/relocation.c b/src/relocation.c index a81a45e..b92af2b 100644 --- a/src/relocation.c +++ b/src/relocation.c @@ -20,7 +20,7 @@ * @param replacement string value */ void replace_text(char *original, const char *target, const char *replacement) { - char buffer[OHMYCAL_BUFSIZ]; + char buffer[OMC_BUFSIZ]; char *tmp = original; memset(buffer, 0, sizeof(buffer)); @@ -62,7 +62,7 @@ void file_replace_text(const char* filename, const char* target, const char* rep return; } - char buffer[OHMYCAL_BUFSIZ]; + char buffer[OMC_BUFSIZ]; char tempfilename[] = "tempfileXXXXXX"; FILE *tfp = fopen(tempfilename, "w"); |