]> Joshua Wise's Git repositories - netwatch.git/blobdiff - net/http/fs.c
some changes for gcc4
[netwatch.git] / net / http / fs.c
index cb7a2263c7bf5980fd3b7db059fa3ed67922ef1b..0bf11cb9c97a2440a8e2a5ad85e357a3fa266774 100644 (file)
@@ -42,7 +42,7 @@
 
 void handle_regs(struct fs_file *file)
 {
-  static unsigned char buf[2048];
+  static char buf[2048];
   
   sprintf(buf,
     "<html><head><title>Registers</title></head><body>"
@@ -72,8 +72,8 @@ void handle_regs(struct fs_file *file)
 
 void handle_backtrace(struct fs_file *file)
 {
-  static unsigned char buf[2048];
-  static unsigned char buf2[64];
+  static char buf[2048];
+  static char buf2[64];
   int i = 10;
   unsigned long *pebp, *peip;
   unsigned long ebp;
This page took 0.021474 seconds and 4 git commands to generate.