]> git.ipfire.org Git - thirdparty/kmod.git/commit
Add missing newlines
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Sat, 18 Feb 2012 05:56:21 +0000 (03:56 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Sat, 18 Feb 2012 05:56:21 +0000 (03:56 -0200)
commit050db08c57c10cb964d337c5668c4dce309b8d41
tree174a17404f80ad6e3f269cf0728c2e703ea3eeac
parentadca3cd203933f51d9af47b0aa548466687bd48e
Add missing newlines

Checked with following semantic patch for the library:

// smpl
@a@
identifier virtual.func;
expression E1;
expression fmt;
position p1;
@@

func(E1, fmt@p1, ...)

@script:python b@
fmt << a.fmt;
p1 << a.p1;
@@

s = str(fmt)
if s.find("\\n") < 0:
print p1[0].file + ":" + p1[0].line

// smpl

For tools, just remove E1
libkmod/libkmod-config.c
libkmod/libkmod-module.c
testsuite/testsuite.c