* PLINK 1's data format is completely incapable of handling triallelic variants. When you want to keep them (and then e.g. use plink --vcf to keep the reference and the most common alternate allele), you must perform the merge with another tool.
For your job, though, it's safe to just exclude those 11 variants. The failed merge will generate a .missnp file. Use something like
plink --bfile corrected_snpname1 --exclude failed_merge.missnp --make-bed --out tmp_snpname1
to remove those variants from every fileset, and then retry the merge.
* If you're lazy, you can just ignore the multiple position warnings. You might want to figure out why your data sources are inconsistent with each other, though.