summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-02-20 02:07:45 +0100
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-02-20 02:07:45 +0100
commitb6543c169cc3dd1b0f7263bd3d70f70c7d67d1bb (patch)
tree8e78dfbafd61da8d81c264f55e7cead76922dc82
parent59f798c7c52247c7b3f565f96639d1af34ac70b5 (diff)
downloadratpoison-b6543c169cc3dd1b0f7263bd3d70f70c7d67d1bb.zip
Make some members of struct rp_input_line size_t.
-rw-r--r--src/data.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data.h b/src/data.h
index 2be9a98..f4bd185 100644
--- a/src/data.h
+++ b/src/data.h
@@ -359,9 +359,9 @@ struct rp_input_line
char *buffer;
char *prompt;
char *saved;
- int position;
- int length;
- int size;
+ size_t position;
+ size_t length;
+ size_t size;
rp_completions *compl;
Atom selection;
int history_id;