From d0e5a34ac7c34e70c145024a0fed8f6042814f29 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 22 Apr 2010 08:21:01 +0000 Subject: * ext/**/*.[ch]: removed trailing spaces. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/ossl_cipher.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/openssl/ossl_cipher.c') diff --git a/ext/openssl/ossl_cipher.c b/ext/openssl/ossl_cipher.c index 73f2c58190..41dc6b7e3e 100644 --- a/ext/openssl/ossl_cipher.c +++ b/ext/openssl/ossl_cipher.c @@ -79,7 +79,7 @@ ossl_cipher_alloc(VALUE klass) MakeCipher(obj, klass, ctx); EVP_CIPHER_CTX_init(ctx); - + return obj; } @@ -112,7 +112,7 @@ static VALUE ossl_cipher_copy(VALUE self, VALUE other) { EVP_CIPHER_CTX *ctx1, *ctx2; - + rb_check_frozen(self); if (self == other) return self; @@ -170,7 +170,7 @@ ossl_cipher_reset(VALUE self) GetCipher(self, ctx); if (EVP_CipherInit_ex(ctx, NULL, NULL, NULL, NULL, -1) != 1) ossl_raise(eCipherError, NULL); - + return self; } -- cgit v1.2.3