]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
zfec: clean up variable names and whitespace
authorzooko <zooko@zooko.com>
Fri, 9 Nov 2007 04:54:00 +0000 (10:24 +0530)
committerzooko <zooko@zooko.com>
Fri, 9 Nov 2007 04:54:00 +0000 (10:24 +0530)
darcs-hash:c8415bf64b2a3504c5278eef452c7c79596907b7

zfec/zfec/_fecmodule.c

index 4939a8c0359e37c2b712fcc4ee419e255489edbc..36127a84712a17ef9a11aac43831b3a876322199 100644 (file)
@@ -52,7 +52,7 @@ typedef struct {
 } Encoder;
 
 static PyObject *
-Encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds) {
+Encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwdict) {
     Encoder *self;
 
     self = (Encoder*)type->tp_alloc(type, 0);
@@ -78,19 +78,19 @@ Encoder_init(Encoder *self, PyObject *args, PyObject *kwdict) {
 
     if (ink < 1) {
         py_raise_fec_error("Precondition violation: first argument is required to be greater than or equal to 1, but it was %d", self->kk);
-       return -1;
+        return -1;
     }
     if (inm < 1) {
         py_raise_fec_error("Precondition violation: second argument is required to be greater than or equal to 1, but it was %d", self->mm);
-       return -1;
+        return -1;
     }
     if (inm > 256) {
         py_raise_fec_error("Precondition violation: second argument is required to be less than or equal to 256, but it was %d", self->mm);
-       return -1;
+        return -1;
     }
     if (ink > inm) {
         py_raise_fec_error("Precondition violation: first argument is required to be less than or equal to the second argument, but they were %d and %d respectively", ink, inm);
-       return -1;
+        return -1;
     }
     self->kk = (short)ink;
     self->mm = (short)inm;
@@ -307,7 +307,7 @@ typedef struct {
 } Decoder;
 
 static PyObject *
-Decoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds) {
+Decoder_new(PyTypeObject *type, PyObject *args, PyObject *kwdict) {
     Decoder *self;
 
     self = (Decoder*)type->tp_alloc(type, 0);