summaryrefslogtreecommitdiff
path: root/sysutils/testdisk/files/patch-src::intrface.c
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-05-30 14:04:15 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-05-30 14:04:15 +0000
commit09c6a8ade2f9bede34c295189e95c8c133efb0a9 (patch)
treef73405d379dad80f51c115a0dca658ee9974d684 /sysutils/testdisk/files/patch-src::intrface.c
parento) Update to version 4.50.91 (diff)
- Update to 5.3
PR: ports/67381 Submitted by: Florent Thoumie <flz@xbsd.org> (maintainer)
Notes
Notes: svn path=/head/; revision=110408
Diffstat (limited to 'sysutils/testdisk/files/patch-src::intrface.c')
-rw-r--r--sysutils/testdisk/files/patch-src::intrface.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/sysutils/testdisk/files/patch-src::intrface.c b/sysutils/testdisk/files/patch-src::intrface.c
deleted file mode 100644
index a142ab77a0d8..000000000000
--- a/sysutils/testdisk/files/patch-src::intrface.c
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -ruw src/intrface.c src/intrface.c
---- src/intrface.c 2004-03-16 11:13:01.000000000 +0100
-+++ src/intrface.c 2004-03-30 17:19:00.000000000 +0200
-@@ -788,9 +788,6 @@
- int done=0;
- va_list ap;
- WINDOW *window;
-- va_start(ap,_format);
-- window=*(WINDOW**)ap;
-- va_end(ap);
- struct MenuItem menuBuffer[]=
- {
- { 'P', "Previous",""},
-@@ -806,6 +803,9 @@
- { 0, NULL, NULL }
- };
- char options[20];
-+ va_start(ap,_format);
-+ window=va_arg(ap,WINDOW*);
-+ va_end(ap);
- if(nbr_lines<=DUMP_MAX_LINES)
- {
- strncpy(options,"Q",sizeof(options));