Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-06-01 21:09:06 +0000
committereutarass2010-06-01 21:09:06 +0000
commit747091fcd3044b0c490071a72175375b7f302294 (patch)
treed72b0b99187a5fe8035a8207a3a182203578f461
parent07b040fe4a5b9440e0a626e4efe2fe4ead3dd74f (diff)
downloadorg.eclipse.tcf.agent-747091fcd3044b0c490071a72175375b7f302294.tar.gz
org.eclipse.tcf.agent-747091fcd3044b0c490071a72175375b7f302294.tar.xz
org.eclipse.tcf.agent-747091fcd3044b0c490071a72175375b7f302294.zip
TCF Agent: fixed few comments in errors.h
-rw-r--r--framework/errors.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/framework/errors.h b/framework/errors.h
index 2dc424b4..990f9b9f 100644
--- a/framework/errors.h
+++ b/framework/errors.h
@@ -111,8 +111,7 @@ extern int get_error_code(int no);
/*
* Return TCF error report that describes given error code 'no'.
* Clients should call release_error_report() when done using it.
- * Return NULL if 'no' = 0, or if 'no' was not creted by
- * set_error_report_errno() and 'create' = 0.
+ * Return NULL if 'no' = 0.
*/
extern ErrorReport * get_error_report(int no);
@@ -123,7 +122,7 @@ extern ErrorReport * get_error_report(int no);
extern ErrorReport * create_error_report(void);
/*
- * Release error report that was obtained by get_error_report().
+ * Release error report that was obtained by get_error_report() or create_error_report().
*/
extern void release_error_report(ErrorReport * report);

Back to the top