summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés <andmarti@gmail.com>2021-04-01 13:03:03 -0300
committerAndrés <andmarti@gmail.com>2021-04-01 13:03:03 -0300
commit75ae3806844821cba1b2e3fdb9237d737944e850 (patch)
tree1ada3738031d56b9135ade663de55c1ea0a86749
parent8e397ff0d4df30db3ea429052968a44862531576 (diff)
fix typov0.8.1
-rw-r--r--src/sort.c2
-rw-r--r--src/undo.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/sort.c b/src/sort.c
index 3d0bf62..d9a650a 100644
--- a/src/sort.c
+++ b/src/sort.c
@@ -169,7 +169,7 @@ void sortrange(struct ent * left, struct ent * right, char * criteria) {
return;
}
}
- p->row = minr + c;
+ p_aux->row = minr + c;
}
currow = minr;
diff --git a/src/undo.c b/src/undo.c
index 16294aa..8a2af71 100644
--- a/src/undo.c
+++ b/src/undo.c
@@ -384,7 +384,7 @@ int len_undo_list() {
void copy_to_undostruct (int row_desde, int col_desde, int row_hasta, int col_hasta, char type) {
int c, r;
struct ent * p;
- int repeated;
+ //int repeated;
for (r = row_desde; r <= row_hasta; r++)
for (c = col_desde; c <= col_hasta; c++) {