aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.transmeta.com>2003-05-16 22:39:18 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-05-16 22:39:18 -0700
commitd847507434bbeda3e22b5f2c1cd5c486905ec1ab (patch)
tree85f325877503394edba7a77fd9cd40cc34d534c9 /crypto
parent3584199aaf995eea33b57fb1e933711c0fffe5cf (diff)
downloadhistory-d847507434bbeda3e22b5f2c1cd5c486905ec1ab.tar.gz
Make request_module() take a printf-like vararg argument instead of a string.
This is what a lot of the callers really wanted.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/autoload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/autoload.c b/crypto/autoload.c
index 21d3b22a8398f8..7cda40b39ddf36 100644
--- a/crypto/autoload.c
+++ b/crypto/autoload.c
@@ -23,7 +23,7 @@
*/
void crypto_alg_autoload(const char *name)
{
- request_module(name);
+ request_module("%s", name);
}
struct crypto_alg *crypto_alg_mod_lookup(const char *name)