diff --git a/OV/OVOutlets.cs b/OV/OVOutlets.cs
index 0531d0e399b9a868bd942d4d796bf3ffe4d5cff6..15f092a753fd17aa04a04c35453751caa632f2c2 100644
--- a/OV/OVOutlets.cs
+++ b/OV/OVOutlets.cs
@@ -43,7 +43,7 @@ namespace LSL4Unity.OV
 			{
 				case StreamTypes.Double: return liblsl.channel_format_t.cf_double64;
 				case StreamTypes.Float:  return liblsl.channel_format_t.cf_float32;
-				case StreamTypes.Int:    return liblsl.channel_format_t.cf_int64;
+				case StreamTypes.Int:    return liblsl.channel_format_t.cf_int32;
 				default:                 throw new ArgumentOutOfRangeException();
 			}
 		}
diff --git a/OV/Template/StimulationOutlet.cs b/OV/Template/StimulationOutlet.cs
index 463dcd334b60c55630ba58ec2e133972fc8bc021..2ebb325e9d11fdb1898cf14a75e9ea60b41ad4ee 100644
--- a/OV/Template/StimulationOutlet.cs
+++ b/OV/Template/StimulationOutlet.cs
@@ -6,7 +6,7 @@ namespace LSL4Unity.OV.Template
 	/// <seealso cref="OVIntOutlet" />
 	public class StimulationOutlet : OVIntOutlet
 	{
-		/// <inheritdoc cref="OVIntInlet.Process"/>
+		/// <inheritdoc cref="OVIntOutlet.Process"/>
 		protected override void Process(int[] input) { samples = input; }
 	}
 }