summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL.DE2
-rw-r--r--synaptics.h2
-rw-r--r--test/test-pad.c2
-rw-r--r--testprotokoll.c12
4 files changed, 9 insertions, 9 deletions
diff --git a/INSTALL.DE b/INSTALL.DE
index ff5131c..e5868a2 100644
--- a/INSTALL.DE
+++ b/INSTALL.DE
@@ -51,7 +51,7 @@ der Treiber später einaml online konfigurierbar werden.
6. Der X-Server ist neu zu starten. Sollte das Touchpad nicht
funktionieren, siehe Schritt 7.
-7. a) Die Ausgaben des XFree-Logfiles anschauen.
+7. a) Die Ausgaben des XFree-Logfiles anschauen.
b) Den XServer mit "startx -- -logverbose 8" starten um mehr
Ausgaben zu erzeugen.
diff --git a/synaptics.h b/synaptics.h
index ef7224c..99ab9ef 100644
--- a/synaptics.h
+++ b/synaptics.h
@@ -91,7 +91,7 @@ enum SynapticsProtocol {
typedef struct _SynapticsPrivateRec
{
/* shared memory pointer */
- SynapticsSHMPtr synpara;
+ SynapticsSHMPtr synpara;
enum SynapticsProtocol proto;
diff --git a/test/test-pad.c b/test/test-pad.c
index 9c6d7ce..96c06cb 100644
--- a/test/test-pad.c
+++ b/test/test-pad.c
@@ -107,7 +107,7 @@ int main(int argc, char* argv[])
fd = open("/dev/psaux", O_RDWR);
if(fd == -1)
- {
+ {
fprintf(stderr, "error open: %s\n", strerror(errno));
exit(0);
}
diff --git a/testprotokoll.c b/testprotokoll.c
index 76d03bd..3924504 100644
--- a/testprotokoll.c
+++ b/testprotokoll.c
@@ -13,13 +13,13 @@ SynapticsReadPacket(int fd)
int inSync = 0;
unsigned char pBuf[7], u;
- while(read(fd,&u, 1) == 1)
+ while(read(fd,&u, 1) == 1)
{
pBuf[count++] = u;
/* check first byte */
- if((count == 1) && ((u & 0xC8) != 0x80))
+ if((count == 1) && ((u & 0xC8) != 0x80))
{
inSync = 0;
count = 0;
@@ -28,7 +28,7 @@ SynapticsReadPacket(int fd)
}
/* check 4th byte */
- if((count == 4) && ((u & 0xc8) != 0xc0))
+ if((count == 4) && ((u & 0xc8) != 0xc0))
{
inSync = 0;
count = 0;
@@ -36,7 +36,7 @@ SynapticsReadPacket(int fd)
continue;
}
- if(count >= 6)
+ if(count >= 6)
{ /* Full packet received */
if(!inSync) {
inSync = 1;
@@ -68,7 +68,7 @@ int main(int argc, char* argv[])
if(argc > 1)
outputformat = atoi(argv[1]);
-
+
fd=open("/dev/psaux", O_RDONLY);
if(fd==-1)
@@ -76,7 +76,7 @@ int main(int argc, char* argv[])
printf("Error opening /dev/psaux\n");
exit(1);
}
-
+
SynapticsReadPacket(fd);
close(fd);