|
From: <gi...@gp...> - 2011-01-23 05:16:17
|
The branch, master has been updated
via 58b6f969f16124eeda6924178dd0e9281b147f6d (commit)
from 13de8601a39f2ed2a18aca814598f3ebe17ff506 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
src/edif.y | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
=================
Commit Messages
=================
commit 58b6f969f16124eeda6924178dd0e9281b147f6d
Author: DJ Delorie <dj...@de...>
Commit: DJ Delorie <dj...@de...>
FindContext() takes an int, not a pointer.
:100644 100644 1bad8ff... d9dbd8e... M src/edif.y
=========
Changes
=========
commit 58b6f969f16124eeda6924178dd0e9281b147f6d
Author: DJ Delorie <dj...@de...>
Commit: DJ Delorie <dj...@de...>
FindContext() takes an int, not a pointer.
diff --git a/src/edif.y b/src/edif.y
index 1bad8ff..d9dbd8e 100644
--- a/src/edif.y
+++ b/src/edif.y
@@ -4147,7 +4147,7 @@ void ParseEDIF(char* filename,FILE* err)
*/
CSP = (ContextCar *) Malloc(sizeof(ContextCar));
CSP->Next = NULL;
- CSP->Context = FindContext(NULL);
+ CSP->Context = FindContext(0);
CSP->u.Used = NULL;
ContextDefined = 0;
}
|