problem , can you help me? what is wrong

#include <Servo.h>
Servo servouno;
int posicion_servouno;
int posicio_servodos;

void setup() {
// put your setup code here, to run once:
servouno.attach(9);
pinMode(10, INPUT);
}

void loop() {
int statinicial = 0;
statinicial = digitalRead(10);
if (statinicial == LOW);
posicion_servouno = 120;
servouno.write(posicion_servouno);
}
else {

posicion_servodos =30;
servouno.write(posicion_servodos);
}

You're missing a final }

And a set of these [code][/code]

if (statinicial == LOW);Oops

Doesn't it have a compile error on the "else without if"?

OP forgot something even more important than code tags and making sure the code even compiles before posting it here: a description of the actual problem they need help with.