Penguin

Differences between version 5 and revision by previous author of SIGSEGV.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 5 Last edited on Friday, June 4, 2004 4:59:14 am by AdamLamb Revert
Older page: version 4 Last edited on Thursday, February 5, 2004 2:54:28 pm by JohnMcPherson Revert
@@ -7,9 +7,9 @@
 This is almost invariably a programming fault. 
  
 The default action for this signal is to cause the program to terminate and dump core. 
  
-A classic example is to deference a pointer in [C] that is either uninitialised, or has already been freed. Here is some C code: 
+A classic example is to dereference a pointer in [C] that is either uninitialised, or has already been freed. Here is some C code: 
  
  #include <stdio.h> 
  int main(void) { 
  int *pointer;