pkg/ifuzz/generated: change package name to match path

Some tools blow up due to the mismatch...
Let's use the canonical convention.
This commit is contained in:
Dmitry Vyukov 2019-02-19 15:20:44 +01:00
parent 59f36113ee
commit 23f4bab451
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ nextInsn:
insns = deduped
fmt.Printf("// AUTOGENERATED FILE\n\n")
fmt.Printf("package ifuzz\n\n")
fmt.Printf("package generated\n\n")
fmt.Printf("import . \"github.com/google/syzkaller/pkg/ifuzz\"\n\n")
fmt.Printf("func init() { Insns = insns }\n\n")
fmt.Printf("var insns = ")

View File

@ -1,6 +1,6 @@
// AUTOGENERATED FILE
package ifuzz
package generated
import . "github.com/google/syzkaller/pkg/ifuzz"