Skip to content

Commit 45a1470

Browse files
committed
Merge branch 'master' of https://github.com/ahay/src
2 parents ee291ba + ee5eb59 commit 45a1470

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

book/data/freeusp/land/SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Fetch(tgz,
88
server='http://www.freeusp.org',
99
top='RaceCarWebsite/TechTransfer/Tutorials/Processing_2D',
1010
dir='Data')
11-
files = map(lambda x: 'Line_001.'+x,Split('TXT SPS RPS XPS sgy'))
11+
files = ['Line_001.'+x for x in Split('TXT SPS RPS XPS sgy')]
1212
Flow(files,tgz,
1313
'gunzip -c $SOURCE | tar -xvf -',stdin=0,stdout=-1)
1414

user/llisiw/Mkirmigsr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ int main(int argc, char* argv[])
209209
if (adj) {
210210
memset (out[0], 0, nzx*ng*sizeof(float));
211211
} else {
212-
sf_floatread(out[0],nzx,mig);
212+
sf_floatread(out[0],nzx*ng, mig);
213213
}
214214

215215
/* fork to get number of threads*/

user/llisiw/tinterpsr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ void dinterp_hermite(bool source /* source or receiver */,
182182
}
183183
}
184184

185-
void tinterp_close()
185+
void tinterp_close(void)
186186
/*< close >*/
187187
{
188188
return;

0 commit comments

Comments
 (0)