Index: trunk/psLib/src/sys/psAbort.c
===================================================================
--- trunk/psLib/src/sys/psAbort.c	(revision 17446)
+++ trunk/psLib/src/sys/psAbort.c	(revision 24432)
@@ -10,5 +10,5 @@
  *  @author Eric Van Alst, MHPCC
  *  @author Joshua Hoblitt, University of Hawaii
- *   
+ *
  *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
  *  @date $Date: 2008-04-13 08:18:27 $
@@ -34,5 +34,5 @@
                ...)
 {
-    psErrorStackPrint(stderr, "Aborting. Error stack:");
+    psErrorStackPrint(stderr, "Aborting in function %s at %s:%d. Error stack:", func, file, lineno);
 
     va_list argPtr;             // variable list arguement pointer
@@ -51,12 +51,12 @@
 
 void p_psAssert(const char *file,
-		unsigned int lineno,
-		const char *func,
-		const bool value,
-		const char *format,
-		...)
+                unsigned int lineno,
+                const char *func,
+                const bool value,
+                const char *format,
+                ...)
 {
     if (value) return;
-    psErrorStackPrint(stderr, "Aborting. Error stack:");
+    psErrorStackPrint(stderr, "Assertion failed in function %s at %s:%d. Error stack:", func, file, lineno);
 
     va_list argPtr;             // variable list arguement pointer
