summaryrefslogtreecommitdiff
path: root/src/execline/loopwhilex.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-01-07 20:31:02 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-01-07 20:31:02 +0000
commit6a9ca73e10c3c4e8a95101313e9c5d46cf018f86 (patch)
tree41ae80cb08fa1e280012b799ad0d1e63090b19bc /src/execline/loopwhilex.c
parent6245dcef12eed3b12b129519eeaf11f7e221d278 (diff)
downloadexecline-6a9ca73e10c3c4e8a95101313e9c5d46cf018f86.tar.xz
Types fix: first pass
This pass makes variable size_t-ready, so everything works when the prototypes are fixed in skalibs. Some code uses "unsigned int *" where it should be "size_t *"; it cannot be changed now, but it's been marked with XXX. It must change at the same time as the skalibs API.
Diffstat (limited to 'src/execline/loopwhilex.c')
-rw-r--r--src/execline/loopwhilex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/execline/loopwhilex.c b/src/execline/loopwhilex.c
index d2955ad..0f1f5e4 100644
--- a/src/execline/loopwhilex.c
+++ b/src/execline/loopwhilex.c
@@ -23,7 +23,7 @@ int main (int argc, char const *const *argv, char const *const *envp)
int wstat ;
int not = 0, cont = 1, rev = 0 ;
unsigned short okcodes[256] ;
- unsigned int nbc = 0 ;
+ unsigned int nbc = 0 ; /* XXX */
PROG = "loopwhilex" ;
{
subgetopt_t l = SUBGETOPT_ZERO ;