indent has problems with comments that are on the right hand side of a line.
[openssl.git] / crypto / ec / ecp_nistp224.c
index 192bb1d2b864d302a762cbb2ac523bb5f9595e08..45d5e089a3408d9bde7d334e602a566e4274c673 100644 (file)
@@ -1017,9 +1017,12 @@ static void point_add(felem x3, felem y3, felem z3,
        felem_assign(z3, z_out);
        }
 
-/* select_point selects the |idx|th point from a precomputation table and
- * copies it to out. */
-static void select_point(const u64 idx, unsigned int size, const felem pre_comp[/*size*/][3], felem out[3])
+/*
+ * select_point selects the |idx|th point from a precomputation table and
+ * copies it to out.
+ * The pre_comp array argument should be size of |size| argument
+ */
+static void select_point(const u64 idx, unsigned int size, const felem pre_comp[][3], felem out[3])
        {
        unsigned i, j;
        limb *outlimbs = &out[0][0];