diff options
author | Robert Mustacchi <rm@joyent.com> | 2017-06-24 00:28:41 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2017-07-15 15:54:27 +0000 |
commit | 431514cdf6c90b42f85412cced53edb27a2eea5f (patch) | |
tree | 7fd6c949a6bf72488f4dcb660b2a09ac4113a286 | |
parent | e09913944ee18e455f2c7a57286295d18b6ad0a4 (diff) | |
download | illumos-joyent-431514cdf6c90b42f85412cced53edb27a2eea5f.tar.gz |
fix typo in qede_misc
-rw-r--r-- | usr/src/uts/common/io/qede/qede_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/io/qede/qede_misc.c b/usr/src/uts/common/io/qede/qede_misc.c index 589313cbd2..1d6e068404 100644 --- a/usr/src/uts/common/io/qede/qede_misc.c +++ b/usr/src/uts/common/io/qede/qede_misc.c @@ -33,7 +33,7 @@ qede_sprintf(char *s, const char *fmt, ...) va_list args; va_start(args, fmt); - r = vsnprintf(s, SIZE_MAX, fmt, ap); + r = vsnprintf(s, SIZE_MAX, fmt, args); va_end(args); return (r); |