Skip to content

Commit

Permalink
tools/mkdeps: increase MAX_BUFFER from 16384 to 65536
Browse files Browse the repository at this point in the history
Signed-off-by: haopengxiang <[email protected]>
  • Loading branch information
haopengxiang authored and xiaoxiang781216 committed Oct 31, 2024
1 parent a15b82d commit 417f5f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/mkdeps.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
* Pre-processor Definitions
****************************************************************************/

#define MAX_BUFFER (16384)
#define MAX_EXPAND (16384)
#define MAX_SHQUOTE (16384)
#define MAX_BUFFER (65536)
#define MAX_EXPAND (65536)
#define MAX_SHQUOTE (65536)

/* MAX_PATH might be defined in stdlib.h */

Expand Down

0 comments on commit 417f5f4

Please sign in to comment.