mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-08 20:41:59 +03:00
Removed unneeded var to make build process a bit cleaner
This commit is contained in:
parent
d79dfa1324
commit
89d3cbddd2
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <mhl/memory.h>
|
#include <../mhl/memory.h>
|
||||||
|
|
||||||
#define mhl_str_dup(str) ((str ? strdup(str) : strdup("")))
|
#define mhl_str_dup(str) ((str ? strdup(str) : strdup("")))
|
||||||
#define mhl_str_ndup(str,len) ((str ? strndup(str,len) : strdup("")))
|
#define mhl_str_ndup(str,len) ((str ? strndup(str,len) : strdup("")))
|
||||||
@ -61,7 +61,7 @@ static inline char* __mhl_str_concat_hlp(const char* base, ...)
|
|||||||
size_t totalsize = 0;
|
size_t totalsize = 0;
|
||||||
|
|
||||||
// first pass: scan through the params and count string sizes
|
// first pass: scan through the params and count string sizes
|
||||||
va_list par;
|
//va_list par;
|
||||||
|
|
||||||
if (base)
|
if (base)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user