diff options
author | midipix <writeonce@midipix.org> | 2018-08-18 15:54:16 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-18 22:14:06 -0400 |
commit | ecd0a790c814ad6faf8a3c1f69a18704cbdaa9e7 (patch) | |
tree | 56767118b17f01aeefc488f4466f41fd96f38100 /src | |
parent | 89e9e6e2aaa49eccb806bd3a8daac04dd679b895 (diff) | |
download | ntux-ecd0a790c814ad6faf8a3c1f69a18704cbdaa9e7.tar.bz2 ntux-ecd0a790c814ad6faf8a3c1f69a18704cbdaa9e7.tar.xz |
driver: ntux_get_driver_ctx(): support stack-based argv.
Diffstat (limited to 'src')
-rw-r--r-- | src/driver/ntux_driver_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver/ntux_driver_ctx.c b/src/driver/ntux_driver_ctx.c index 75362bb..e2440b5 100644 --- a/src/driver/ntux_driver_ctx.c +++ b/src/driver/ntux_driver_ctx.c @@ -62,7 +62,7 @@ struct ntux_driver_ctx_alloc { static uint32_t ntux_argv_flags(uint32_t flags) { - uint32_t ret = 0; + uint32_t ret = ARGV_CLONE_VECTOR; if (flags & NTUX_DRIVER_VERBOSITY_NONE) ret |= ARGV_VERBOSITY_NONE; |